Forum Replies Created

Viewing 30 posts - 25,561 through 25,590 (of 34,353 total)
  • Author
    Posts
  • Hi,
    Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: BLOG …. Request for help #989129

    Hi,

    @darnott75
    We are happy to help, sorry I meant to tell you to try adding the code above to the end of your functions.php file in Appearance > Editor
    But please only use one code snippet at a time. Notice the first line says what type of layout it is, “single small”, “single big”, or “grid”

    Best regards,
    Mike

    in reply to: How do I duplicate Construction theme slider #989021

    Hi,
    Good point, I changed it to:

     #top .avia-slideshow-arrows {
        opacity: 0; 
    }
    
    #top .avia-fullwidth-slider:hover .avia-slideshow-arrows {
        opacity: 1 !important; 
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: transparent menu #989016

    Hi,
    Please use this function instead, it will only work on your homepage:

    	function slider_h2_to_h1(){
    		if ( is_page('734') ) { ?>
    		<script>
    		jQuery(window).load(function(){
    		var el = document.querySelector('.avia-caption-title');
    			  el.outerHTML = '<h1 class="avia-caption-title ">' + el.innerHTML + '</h1>';
    		});
    		
    		</script>
    		<?php }
    		}
    		add_action('wp_footer', 'slider_h2_to_h1');
    

    Best regards,
    Mike

    in reply to: BLOG …. Request for help #989012

    Hi,

    @darnott75
    This is a bit off topic, please open a new thread with the url to your site so we can investigate which classes will work for you.
    You can modify the category pages layout with a function, here’s three to test, please only use one at a time:

    //change category page layout to blog single small style
    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'single-small';
    return $layout;
    }
    //change category page layout to blog single big style
    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'single-big';
    return $layout;
    }
    //change category page layout to blog grid style
    add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); 
    function avia_change_category_blog_layout($layout, $context){
    if($context == 'archive') $layout = 'blog-grid';
    return $layout;
    }

    Best regards,
    Mike

    Hi,
    Oh, I see, thanks for sharing. Glad you were able to get them to work.
    Unless there is anything else we can assist with on this issue, shall we close this then?

    Best regards,
    Mike

    in reply to: Using pngs instead of fontello icons #989009

    Hi,
    Oh, I see, I added this new css to your Quick CSS, and I commented it for you to see which code is for which tab:

    /* Tab 1 */
    #top.home #av-tab-section-1 a[data-av-tab-section-title="1"] .av-tab-section-icon:before { visibility: hidden !important; }
    #top.home #av-tab-section-1 a[data-av-tab-section-title="1"] .av-tab-section-icon { background: url(https://wpg.com.gridhosted.co.uk/wp-content/uploads/2018/07/euricon.png) !important; background-size: contain !important; background-repeat: no-repeat !important; background-position: 50% 50% !important; }
    #top.home #av-tab-section-1 a[data-av-tab-section-title="1"] .av-tab-section-icon:hover { background: url(https://wpg.com.gridhosted.co.uk/wp-content/uploads/2018/07/euricon_hover.png) !important; background-size: contain !important; background-repeat: no-repeat !important; background-position: 50% 50% !important; }
    
    /* Tab 2*/
    #top.home #av-tab-section-1 a[data-av-tab-section-title="2"] .av-tab-section-icon:before { visibility: hidden !important; }
    #top.home #av-tab-section-1 a[data-av-tab-section-title="2"] .av-tab-section-icon { background: url(https://wpg.com.gridhosted.co.uk/wp-content/uploads/2018/07/midicon.png) !important; background-size: contain !important; background-repeat: no-repeat !important; background-position: 50% 50% !important; }
    #top.home #av-tab-section-1 a[data-av-tab-section-title="2"] .av-tab-section-icon:hover { background: url(https://wpg.com.gridhosted.co.uk/wp-content/uploads/2018/07/midicon_hover.png) !important; background-size: contain !important; background-repeat: no-repeat !important; background-position: 50% 50% !important; }

    This is for the first two tabs, so you just need to copy it 3 more times and change the image url and the number in:

    [data-av-tab-section-title="2"]

    to correspond to the tab.
    Please clear your browser cache and check the first two tabs.

    Best regards,
    Mike

    in reply to: How do I duplicate Construction theme slider #989008

    Hi,
    Thank you for the login, I added this code in the General Styling > Quick CSS field:

    #top .avia-slideshow-arrows a {
        opacity: 0; 
    }
    #top .avia-slideshow-arrows a:hover {
        opacity: 1 !important; 
    }

    Please clear your browser cache and check.

    Best regards,
    Mike

    in reply to: Comment Area Customization #989005

    Hi,
    It seems to be showing for me in Chrome, try logging out and using incognito mode. I think it’s not showing it to you because your logged in or the cookie is already set for you.
    2018-07-23_205125

    Best regards,
    Mike

    in reply to: Help creating a section #989000

    Hi,
    Thanks, Glad we were able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Dividing Line Between Blog Posts? #988996

    Hi,
    There is no difference using the editor or ftp when making changes to the functions.php
    For changing the title attribute also, please use this code instead:

    function replace_author_link(){
      ?>
      <script>
      jQuery(window).load(function(){
      jQuery( '.blog-author' ).each(function() {
      jQuery( this ).find( 'a' ).attr({href: "https://www.new.barrelracingtips.com/about-heather-smith/", title: "About Heather Smith"});
      });
      });
      </script>
      <?php
      }
      add_action('wp_footer', 'replace_author_link');

    Best regards,
    Mike

    Hi,
    Thanks for the update, we look forward to your results.
    Also I tried searching on fontello.com for your icons, but couldn’t find them, I assume you gave them custom names, what were their original names?

    Best regards,
    Mike

    in reply to: Dividing Line Between Blog Posts? #988681

    Hi,
    If you would like to replace the author link, please try adding this code to the end of your functions.php file in Appearance > Editor:

    function replace_author_link(){
      ?>
      <script>
      jQuery(window).load(function(){
      jQuery( '.blog-author' ).each(function() {
      jQuery( this ).find( 'a' ).attr('href', 'https://www.new.barrelracingtips.com/about-heather-smith/');
      });
      });
      </script>
      <?php
      }
      add_action('wp_footer', 'replace_author_link');

    Best regards,
    Mike

    in reply to: BLOG …. Request for help #988676

    Hi,
    Oh, I see, Try adding this code to the end of your functions.php file in Appearance > Editor:

    function move_date_script(){
      ?>
      <script>
      jQuery(window).load(function(){
      jQuery( '.av-magazine-entry' ).each(function() {
      jQuery( this ).find( 'time.av-magazine-time' ).insertAfter( jQuery(this).find('h3.av-magazine-title') );
      });
      });
      </script>
      <?php
      }
      add_action('wp_footer', 'move_date_script');

    Best regards,
    Mike

    in reply to: Pictures not showing on tab #988672

    Hi,
    Please try the same code in WordPress > Customize > Additional CSS and clear any cache plugin and your browser cache.

    Best regards,
    Mike

    Hi,
    Please include FTP access in the Private Content area so we can take a look.

    Best regards,
    Mike

    in reply to: Media library shows empty boxes, no images #988667

    Hi,
    You are welcome, please feel free to open a new thread if we can assist in the future. Thank you for using Enfold.

    Best regards,
    Mike

    in reply to: Margin/Padding for Page and Post Content? #988530

    Hi,
    There was another 50px of padding, Please see screenshot in Private Content area for where I mean.
    Now your content is sitting on top of your image that is above your footer.

    Best regards,
    Mike

    in reply to: Enfold Child Options are partially not working #988528

    Hi,
    The Google fonts are built in, and are only loaded when called.
    you can remove them with this code to the end of your functions.php file in Appearance > Editor:

    //remove google fonts
    add_action( 'init', 'enfold_customization_switch_fonts' );
    function enfold_customization_switch_fonts() {
    global $avia;
    $avia->style->print_extra_output = false;
    }

    but then you would need to add you own fonts.

    Best regards,
    Mike

    in reply to: Image size #988524

    Hi,
    The setting was at: Enfold Theme Options > Sidebar > Page sidebar navigation
    I unchecked it for you.

    Best regards,
    Mike

    in reply to: Enfold Child Options are partially not working #988521

    Hi,
    Glad we could help :)
    Which “other” Google fonts? Do you mean all of the ones in the drop down list the advanced styling?

    Best regards,
    Mike

    in reply to: Border under Widget Titles? #988520

    Hi,
    Please try this code instead, in the General Styling > Quick CSS field:

    .sidebar .widget {
        border-bottom: 2px dashed #CCBDB8 !important; 
        width: 100%;
    }
    .sidebar .widget {
    margin-top: 20px !important;
    }

    Best regards,
    Mike

    in reply to: Visited Link color without Button #988517

    Hey Andreas_BS,
    Please try this code in the General Styling > Quick CSS field:

    p a:visited {color: red !important;}

    Best regards,
    Mike

    Hi,
    This bug has been fixed and will be in the next update.
    I have included a link to the file in the Private Content area so you don’t need to edit it yourself, but please save a copy of your current file as a backup to ensure this works for you.
    please put the file here:
    /enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.js

    Best regards,
    Mike

    in reply to: Changing WooCommerce checkout Fields #988507

    Hi,
    Glad Dude was able to help, we will close this now. Thank you for using Enfold.

    For your information, you can take a look at Enfold documentation here
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Mike

    in reply to: Comment Area Customization #988503

    Hey viaggiareverde,
    I have worked on the nested comments before, and for that solution it was:

    Try this code in the General Styling > Quick CSS field:

    @media only screen and (max-width: 767px) { 
    #top .commentlist .children ul,#top .commentlist ul,#top .commentlist .comment {
        margin-left: 0px !important; 
    }
    }

    If it’s not working in the Enfold Theme Options > General Styling > Quick CSS field, please try in the WordPress > Customize > Additional CSS.

    Perhaps it will work for you also, otherwise we will need a link to the page in question to investigate.

    For the notifying of comments, I believe you would like your users to subscribe to comments. I have found reference to this plugin: Subscribe To Comments Reloaded please see if this will work for you. I don’t have a built-in solution.

    Best regards,
    Mike

    in reply to: Search Loupe not visible #988498

    Hey BelIblis,
    Please check Enfold Theme Options > Main Menu > General > Append search icon to main menu
    to ensure it is checked.
    If this doesn’t help, please include a admin login in the private content area so we can take a closer look.

    Best regards,
    Mike

    in reply to: Dividing Line Between Blog Posts? #988496

    Hi,
    Yes, I have a couple of options, please remove the css so I can test. Also will this be for the whole site or one page?

    Best regards,
    Mike

    in reply to: Enfold Child Options are partially not working #988495

    Hi,
    I see that you had the “body” font size set to 13px in the Enfold Theme Options > Advanced Styling > Body
    The advanced styling typically overrides the general stylings, you also have many other fonts set there, perhaps that is the conflict.
    I tested by changing the “body” to “default” in the advanced stylings and cleared my browser cache. Please check.

    Best regards,
    Mike

    in reply to: Margin/Padding for Page and Post Content? #988491

    Hi,
    Oh, I see, thanks.
    There was 50px of padding there which this will remove:

    div.template-page.content.av-content-full.alpha.units {
    padding-bottom: 0px !important;
    }

    I tested on a few other pages and it seemed to work correctly.

    Best regards,
    Mike

Viewing 30 posts - 25,561 through 25,590 (of 34,353 total)