This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // webpack is a module bundler | |
| // This means webpack takes modules with dependencies | |
| // and emits static assets representing those modules. | |
| // dependencies can be written in CommonJs | |
| var commonjs = require("./commonjs"); | |
| // or in AMD | |
| define(["amd-module", "../file"], function(amdModule, file) { | |
| // while previous constructs are sync | |
| // this is async |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* H3 and H2 Text Centered Homepage | |
| ------------------------- */ | |
| .page-id-10 h2 { | |
| color: #AB1F24; | |
| text-align: center; | |
| } | |
| .page-id-10 h3 { | |
| color: #585858; | |
| text-align: center; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .et_pb_slide { | |
| padding: 0!important; | |
| } | |
| .et_pb_slide_description, .et_pb_slider_fullwidth_off .et_pb_slide_description { | |
| margin-left: 0px!important; | |
| text-align: right!important; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php if ( 'on' == et_get_option( 'divi_back_to_top', 'false' ) ) : ?> | |
| <span class="et_pb_scroll_top et-pb-icon"></span> | |
| <?php endif; | |
| if ( ! is_page_template( 'page-template-blank.php' ) ) : ?> | |
| <footer id="main-footer"> | |
| <?php get_sidebar( 'footer' ); ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* Widget Title Color | |
| ------------------------- */ | |
| h4.widgettitle { | |
| color: #AB1F24; | |
| font-weight: bold; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* No Space Between Sections */ | |
| .et_pb_section{ | |
| padding-top: 0px !important; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .container.clearfix.et_menu_container { | |
| height: 140px; | |
| } | |
| .et_fixed_nav #logo { | |
| max-height: 150px; | |
| } | |
| .et-fixed-header #logo { | |
| max-height: 45px; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <ul class="et-social-icons"> | |
| <?php if ( 'on' === et_get_option( 'divi_show_facebook_icon', 'on' ) ) : ?> | |
| <li class="et-social-icon et-social-facebook"> | |
| <a href="<?php echo esc_url( et_get_option( 'divi_facebook_url', '#' ) ); ?>" class="icon"> | |
| <span><?php esc_html_e( 'Facebook', 'Divi' ); ?></span> | |
| </a> | |
| </li> | |
| <?php endif; ?> | |
| <?php if ( 'on' === et_get_option( 'divi_show_twitter_icon', 'on' ) ) : ?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* No Gap Between Modules | |
| ------------------------- */ | |
| .no-gap .et_pb_column_1_2 { | |
| margin-right: 0; | |
| width: 540px; | |
| } | |
| .no-gap .et_pb_column_1_3 { | |
| margin-right: 0; | |
| width: 360px; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Ok, open up includes/builder/main-modules.php, and on line 10908 replace this code | |
| <h2 class="entry-title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> | |
| and replace it with | |
| <h2 class="entry-title"><a href="<?php if ( ( $myurl = get_post_meta( get_the_ID(), 'myurl', true) ) && $myurl<> '' ){ | |
| echo $myurl;} else { the_permalink();} ?>"><?php the_title(); ?></a></h2> | |
| Now you can use custom field with the name myurl. | |
| This should redirect the titles of your blog items to custom URL that you can define via myurl custom link. let me know the result |
OlderNewer