Home User profile
tagDiv Member
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
DaveS
tagDiv Member

Thank you, Simion, much appreciated!

DaveS
tagDiv Member

I tried deactivating of all plugins and used wp-optimize – the paths in question are still accessible and index-able. These urls are not included in the sitemap. I hape only post sitemaps, post-tag sitemap and category sitemap. In the meantime duplicated content issues in the search console are counting.

I don’t have a caching plugin but use memcache and litespeed on the server (it’s a shared hosting). However I don’t think this has something to do with the problem.

I see that many sites have a similar issue:
https://www.google.bg/?gfe_rd=cr&ei=Gl1zWer0LqGz8weAj5eQBg&gws_rd=ssl#q=/wp-content/uploads/revslider/templates/

Any help will be much appreciated!

DaveS
tagDiv Member

Hi Chris,

no idea how they have been created. Many of the paths are to folders located in folder …/revslider/templates/… , which is off and actually never been switched on.

DaveS
tagDiv Member

Hi Bogdan,

I came to that idea too, but your suggestion is unfortunately not a solution for me.
Maybe you can have this in mind for future updates of the theme. It will be good for UX on mobile.

DaveS
tagDiv Member

There’s no caching plugin.

DaveS
tagDiv Member

I see an issue with duplicated content in google’s search console which is concerning the above mentioned urls. Please check the print scr.

https://ibb.co/kzD9xv

  • This reply was modified 9 years by DaveS.
  • This reply was modified 9 years by DaveS.
DaveS
tagDiv Member

Hi Catalin,

here’s a print screen. Does it help?

I need to show up the rest of the categories not only when clicked on the > sign, but on the anchor “More” too.

Thanks

DaveS
tagDiv Member

Rev slider is off, I don’t use it. Such a thing never happened before. I don’t know how to proceed with this and if this is a problem for the SEO or not.

DaveS
tagDiv Member

Thanks, euw, that works fine! Catalin, is that a good solution?

Thanks

DaveS
tagDiv Member

Hi,

Thank you. Btw I’m not using the first set of buttons (at the beginning of the page). Can I just remove their code from being executed?
If yes, what is the exact snippet that has to be removed?

Thanks.

DaveS
tagDiv Member

As I mentioned, I would like to keep the H1 on the logo only for the home page.

On all other wordpress pages I have added a custom H1 tag, so I don’t need the logo to add a second H1 tag.

DaveS
tagDiv Member

It’s not worth installing a plugin just because of this. I would prefer to avoid an unnecessary install.

DaveS
tagDiv Member

Hi,

thanks for the reply. Can I add a rel=”nofollow” to each row in the file you mentioned?
If that will solve my the problem, where exactly should I add it?

Like this:
<a rel=”nofollow” class=”td-social-sharing…
or like this
<a class=”td-social-sharing…-facebook” rel=”nofollow” href=”… ?

You are saying that I cannot add a nofollow to multiple links at once. What do you mean? If the above example works, can I just add the nofollow to each row in the code for the different social media?

Thanks

DaveS
tagDiv Member

Hey Catalin,

is there a solution to have the H1 on the logo only on the home page? For the rest of the pages visual composer is taking care of the H1. Unfortunately we can’t use any heading on the home page for the H1, so the logo is the only possibility.

Thanks

DaveS
tagDiv Member

Thanks Simion! It works best when added to the style.css in the child theme.

DaveS
tagDiv Member

Cheers for that!

DaveS
tagDiv Member

Hey Simion,

I need to change the default site menu with the shop menu on the Cart and the Checkout pages too. What do I need to add to the code?

Thank you!

DaveS
tagDiv Member

Thank you, Simion!

DaveS
tagDiv Member

Hi Bogdan,

Thank you for your reply. Unfortunately I don’t quite understand what to do to achieve the solution with removing the search from the menu on woocommerce pages.
Here are the 2 files you are describing, and I see that I already have the function is_woocommerce in the header-menu.php file.

I also would like to remove the search from the menu on specific pages that are non-woocommerce, like for example the Cart and Order pages.

Any further support is much appreciated!

Thank you!

DaveS
tagDiv Member

Hey guys,

I have one more question about the breadcrumbs and it’s about the breadcrumbs on woocommerce product pages (woocommerce installed to the theme).

The breadcrumbs appear on all product pages, but the very first word for example Home links to the home page of the site (the domain). The following words that represent woocommerce product categories, are linked correctly.

I need to change the Home link to lead to the shop’s home page, not to the site’s home page. This concerns only woocommerce product pages. Could you please help with this?

Thanks

DaveS
tagDiv Member

Hi Simion,

It was a single missing comma (,) that was causing the issue 🙂
It works now as needed!

An enormous THANKS for your support! You’re the best!

DaveS
tagDiv Member

Thanks Simion, much appreciated! But it doesn’t work for some reason…

I created the path and copied the respective file in my child theme, then added the following line of code on the suggested place in the php code: ‘w-menu’ => ‘w menu’ but it breaks the site. To try, I added the code in the respective file, in the respective parent theme’s folder (as you describe above) – it breaks the site again.

I have the shop menu created, just can’t create a new location- woocommerce pages.

Btw, just as a note, in case that matters – I use the following code to avoid loading woocommerce scripts on non-woocommerce pages:

add_action( ‘wp_enqueue_scripts’, ‘dequeue_woocommerce_styles_scripts’, 99 );

function dequeue_woocommerce_styles_scripts() {
if ( function_exists( ‘is_woocommerce’ ) ) {
if ( ! is_woocommerce() && ! is_cart() && ! is_checkout() ) {
# Styles
wp_dequeue_style( ‘woocommerce-general’ );
wp_dequeue_style( ‘woocommerce-layout’ );
wp_dequeue_style( ‘woocommerce-smallscreen’ );
wp_dequeue_style( ‘woocommerce_frontend_styles’ );
wp_dequeue_style( ‘woocommerce_fancybox_styles’ );
wp_dequeue_style( ‘woocommerce_chosen_styles’ );
wp_dequeue_style( ‘woocommerce_prettyPhoto_css’ );
# Scripts
wp_dequeue_script( ‘wc_price_slider’ );
wp_dequeue_script( ‘wc-single-product’ );
wp_dequeue_script( ‘wc-add-to-cart’ );
wp_dequeue_script( ‘wc-cart-fragments’ );
wp_dequeue_script( ‘wc-checkout’ );
wp_dequeue_script( ‘wc-add-to-cart-variation’ );
wp_dequeue_script( ‘wc-single-product’ );
wp_dequeue_script( ‘wc-cart’ );
wp_dequeue_script( ‘wc-chosen’ );
wp_dequeue_script( ‘woocommerce’ );
wp_dequeue_script( ‘prettyPhoto’ );
wp_dequeue_script( ‘prettyPhoto-init’ );
wp_dequeue_script( ‘jquery-blockui’ );
wp_dequeue_script( ‘jquery-placeholder’ );
wp_dequeue_script( ‘fancybox’ );
wp_dequeue_script( ‘jqueryui’ );
}
}
}

Thanks for your support!

DaveS
tagDiv Member

On another forum I found this code as a potential solution, but when I paste it in the child theme’s function.php all pages on the site incl. non-commerce pages stop loading, only a white screen.

// =============================================================================
// Sets Custom Menu For WooCommerce Shop
// =============================================================================

add_filter( ‘wp_nav_menu_args’, ‘custom_blog_menu’ );

function custom_blog_menu( $args ) {
if ( x_is_product() || x_is_product_index() ) {
$args[‘theme_location’] = ‘primary’;
$args[‘menu’] = ‘Custom Menu’;
}
return $args;
}

Can it be modified to work properly?

Thanks

DaveS
tagDiv Member

Hi,

the ad code should be loaded at all, otherwise it’s an Adsense policy violation.

Can I stop it from sending the request to Google and rendering at all?

Thanks

Viewing 25 posts - 101 through 125 (of 161 total)