Forum Replies Created

Viewing 30 posts - 5,221 through 5,250 (of 23,923 total)
  • Author
    Posts
  • Hi!

    Which browsers exactly? may be a CORS-related issue, refer to:
    http://kriesi.at/documentation/enfold/enable-cors

    Best regards,
    Josue

    in reply to: Pagination and seo #474588

    Yes, you can check the code at the end of your theme functions.php.

    Best regards,
    Josue

    in reply to: Lightbox Galleries/groups in Layerslider #474196

    You are welcome, glad to help :)

    Regards,
    Josue

    in reply to: Pagination and seo #474189

    Should work now, check the source code.

    Best regards,
    Josue

    in reply to: Translate the site to RTL #474183

    Hey!

    Changing the animation is not possible with the method we are using as that is handled by JavaScript, regarding the logo, open css/rtl.css and add this at the end:

    #top .logo {
        float: right;
        right: 0;
    }
    
    #top nav.main_menu {
        left: 0;
    }

    Regards,
    Josue

    in reply to: lightbox for textlinks #474179

    Hi!

    Can you post a link to the page where you’re trying it?

    Best regards,
    Josue

    in reply to: Pagination and seo #473421

    Hi,

    Can you please create us a WordPress administrator account? post it here as a private reply.

    Regards,
    Josue

    You are welcome, glad to help :)

    Regards,
    Josue

    in reply to: Pagination and seo #473185

    You could change the code so the canonical removal only occurs on those pages:

    add_action('wp_head', function() {
    if ( is_page (3841) ){ // http://www.emailweddingcard.com/email-wedding-card-designs/box-style-email-wedding-card-design/
    	echo '<link rel="canonical" href="http://www.emailweddingcard.com/email-wedding-card-designs/all-box-style-email-wedding-card-templates/"/>';
    } elseif ( is_page (3352) ){ // http://www.emailweddingcard.com/email-wedding-card-designs/royal-scroll-email-wedding-cards/
    	echo '<link rel="canonical" href="http://www.emailweddingcard.com/email-wedding-card-designs/all-scroll-style-email-wedding-card-templates/"/>';
    } elseif ( is_page (2957) ){ // http://www.emailweddingcard.com/email-wedding-card-designs/pocket-fold-email-wedding-cards/
    	echo '<link rel="canonical" href="http://www.emailweddingcard.com/email-wedding-card-designs/all-pocket-fold-email-wedding-card-template-designs/"/>';
    } elseif ( is_page (3527) ){ // http://www.emailweddingcard.com/email-wedding-card-designs/letter-style-email-wedding-cards/
    	echo '<link rel="canonical" href="http://www.emailweddingcard.com/email-wedding-card-designs/all-letter-style-email-wedding-card-templates/"/>';
    } elseif ( is_page( array( 3831, 3352, 2957, 3527 ) ) ){
    	remove_action('wp_head', 'rel_canonical');	// this runs on those pages only
    } else {}
    }, 1);
    

    Best regards,
    Josue

    in reply to: Translate the site to RTL #473181

    Hey!

    In that case you can use the following in theme / child theme functions.php:

    function load_rtl_css() {
       wp_enqueue_style(  'avia-rtl',  get_template_directory_uri()."/css/rtl.css", array(), '1', 'all' );
    }
    add_action( 'wp_enqueue_scripts', 'load_rtl_css', 100 );

    That will load the RTL stylesheet regardless of language set in the install.

    Cheers!
    Josue

    in reply to: Pagination and seo #473164

    If you are referring to the quotes, it doesn’t really matter.

    in reply to: Google Maps ERROR MESSAGE #473145

    Seems to be caused by your current domain, it should not longer happen when you transition to the actual domain.

    Regards,
    Josue

    in reply to: container width #473137

    Width set in Enfold > General Layout > Dimensions should now be reflected as expected.

    in reply to: Pagination and seo #473133

    Hello,

    Are you using any SEO plugins in addition to that? have you tried disabling all third-party plugins to see if what happens?

    Regards,
    Josue

    in reply to: Google Maps ERROR MESSAGE #473128

    Hi Sven,

    Can you post the link to your website please?

    Regards,
    Josue

    in reply to: Translate the site to RTL #473124

    Hey!

    Refer to this (Manually Installing WordPress Translation Files For Other Languages):
    http://www.wpbeginner.com/wp-tutorials/how-to-install-wordpress-in-other-languages/

    Best regards,
    Josue

    in reply to: Full width submenu as new menu location #473122

    Hi!

    In that case you can use wp_nav_menu:

    add_filter('avia_breadcrumbs', function() {
    	ob_start();
    	wp_nav_menu( array('menu' => 'Project Nav', 'menu_class' => 'av-subnav-menu'));
    	return ob_get_clean();
    });

    Change “menu” parameter.

    Cheers!
    Josue

    in reply to: Pagination and seo #473116
    add_action('wp_head', function() {
    if ( is_page (3841) ){ // http://www.emailweddingcard.com/email-wedding-card-designs/box-style-email-wedding-card-design/
    echo '<link rel="canonical" href="http://www.emailweddingcard.com/email-wedding-card-designs/all-box-style-email-wedding-card-templates/"/>';
    } elseif ( is_page (3352) ){ // http://www.emailweddingcard.com/email-wedding-card-designs/royal-scroll-email-wedding-cards/
    echo '<link rel="canonical" href="http://www.emailweddingcard.com/email-wedding-card-designs/all-scroll-style-email-wedding-card-templates/"/>';
    } elseif ( is_page (2957) ){ // http://www.emailweddingcard.com/email-wedding-card-designs/pocket-fold-email-wedding-cards/
    echo '<link rel="canonical" href="http://www.emailweddingcard.com/email-wedding-card-designs/all-pocket-fold-email-wedding-card-template-designs/"/>';
    } elseif ( is_page (3527) ){ // http://www.emailweddingcard.com/email-wedding-card-designs/letter-style-email-wedding-cards/
    echo '<link rel="canonical" href="http://www.emailweddingcard.com/email-wedding-card-designs/all-letter-style-email-wedding-card-templates/"/>';
    }else{
    
    }
    });

    If you are putting it at the end of functions.php put it without the <?php, also copy it from the forum reply and not from the mail notification.

    in reply to: Filter option below my products on Mobile device #473075

    You are welcome Jason, glad to help :)

    Regards,
    Josue

    in reply to: Full width submenu as new menu location #473074

    The problem with using shortcode directly is that it will try to create a fullwidth element, hence the sidebar issue. Try with the following instead:

    add_filter('avia_breadcrumbs', function() {
    	ob_start();
    	?>
    	<div class="container av-menu-mobile-disabled ">
    		<ul id="av-custom-submenu-1'" class="av-subnav-menu av-submenu-pos-center">
    			<li class="menu-item menu-item-top-level  menu-item-top-level-1"><a href=""><span class="avia-bullet"></span><span class="avia-menu-text">Menu Item 1</span></a></li>
    			<li class="menu-item menu-item-top-level  menu-item-top-level-2"><a href=""><span class="avia-bullet"></span><span class="avia-menu-text">Menu Item 2</span></a></li>
    		</ul>
    	</div>
    	<?php
    	return ob_get_clean();
    });

    Regards,
    Josue

    in reply to: Pagination and seo #473048

    You are welcome, glad to help :)

    Regards,
    Josue

    in reply to: Pagination and seo #473039

    Correct.

    in reply to: container width #473035

    The provided user here doesn’t seem to work, please check.

    Regards,
    Josue

    in reply to: Filter option below my products on Mobile device #473032

    It’s done, check the shop page:
    http://www.luminairearts.co.uk/shop/

    Here’s what i did (update-proof):
    1. Added the following to Plugins > Edit Functions (this will clone the filter and put it before the sort options at the top, only runs on Shop page):

    function clone_filter(){
    	if(is_shop()) { ?>
    	<script>
    	(function($){
    
    			$('.content .product-sorting').prepend($('.inner_sidebar > .widget_layered_nav').clone());
    
    	})(jQuery);
    
    	</script>
    	<?php
    	}
    }
    add_action('wp_footer', 'clone_filter'); 

    2. Added this to Quick CSS (this will make sure the cloned filters only appear on mobile):

    @media only screen and (min-width: 767px) {
        .product-sorting > .widget_layered_nav {
            display: none;
        }
    }

    Cheers!
    Josue

    in reply to: Pagination and seo #473018

    Yeah, having a look at your actual set-up is_paged would not be ideal, try with the last block of code.

    Regards,
    Josue

    in reply to: Pagination and seo #472993

    That’s up to you, you can point the link tag to the category index, or that page you’ve just linked or to a new page, use the following codes to add the tags for each one (IDs are already set, just change the href in each one):

    <?php
    add_action('wp_head', function() {
    	if ( is_page (3841) ){ // http://www.emailweddingcard.com/email-wedding-card-designs/box-style-email-wedding-card-design/
    		echo '<link rel="canonical" href="http://www.site.com/view-all-page"/>';
    	} elseif ( is_page (3352) ){ // http://www.emailweddingcard.com/email-wedding-card-designs/royal-scroll-email-wedding-cards/
    		echo '<link rel="canonical" href="http://www.site.com/view-all-page"/>';
    	} elseif ( is_page (2957) ){ // http://www.emailweddingcard.com/email-wedding-card-designs/pocket-fold-email-wedding-cards/
    		echo '<link rel="canonical" href="http://www.site.com/view-all-page"/>';
    	} elseif ( is_page (3527) ){ // http://www.emailweddingcard.com/email-wedding-card-designs/letter-style-email-wedding-cards/
    		echo '<link rel="canonical" href="http://www.site.com/view-all-page"/>';
    	}else{
    
    	}
    });

    Regarding a view all link, although you could add it with some custom coding it’s not necessary per your initial request as this tags are meant to be read by Google robots and not the user.

    Cheers!
    Josue

    in reply to: Filter option below my products on Mobile device #472969

    Hi,

    I’ll do it for you, can you please hand me a temporary FTP / SFTP account? post it here as a private reply.

    Regards,
    Josue

    in reply to: Added Google Font is not visible #472958

    Hey Frances,

    Montez should now be selectable on General Styling > Fonts.

    Regards,
    Josue

    in reply to: Styling list items in Enfold #472955

    Seems you managed to do it with:

    .entry-content-wrapper div li {
    padding-top:0 !important;
    padding-bottom:0 !important;
    }

    Cheers!
    Josue

    in reply to: Pagination and seo #472953

    Hey Andrew!

    You don’t necessarily need to add a View All link to the pagination links, what you need to do is:
    1. Create a View All page showing all items at once.
    2. Place the rell tag on all paginated screens, you can use the following code (functions.php) for that:

    add_action('wp_head', function() {
    	if ( is_paged() ){
    ?>
    <link rel=”canonical” href=”http://www.site.com/view-all-page”/>
    <?php
            }
    });

    Regards,
    Josue

Viewing 30 posts - 5,221 through 5,250 (of 23,923 total)