Víctor Enrich
Forum Replies Created
-
Thanks for the fast reply.
Good to know you’re on it.
RegardsForum: Plugins
In reply to: [WooCommerce] Products disappeared after upgrading to 2.6Sent! 🙂
You will find the 2.5.5 version installed, since I restored it from yesterday.Forum: Plugins
In reply to: [WooCommerce] Products disappeared after upgrading to 2.6Thanks.
Regarding plugins and themes, I’ve tested the update in another installation and same problem happens, products disappear.
In both installations I’ve activated Twenty Fifteen theme and same again, no products.
My server’s Php version is 5.6
I’d love to give you admin credentials in order to make you see the situation, otherwise if there’s no solution the only thing I see here is doing a clean install, with 2.6 installed at the very beginningForum: Plugins
In reply to: [WooCommerce] Products disappeared after upgrading to 2.6Permalinks resaved and nothing happens
Products created and nothing happens
Products are not hidden…Very very strange
Forum: Plugins
In reply to: [WooCommerce] Products disappeared after upgrading to 2.6Thanks for answering Mike.
No, I didn’t uninstall.
The products are displayed properly in the backend, everything looks normal, but when clicking on the url’s they send me to “non found” pages, it’s very weird. ALso no products show in shop, categoray, tags etc pages.
I’ve already tried what you suggest but I don’t find the event in the list so I am unable to run it.
I can give you admin credentials so you can take a look if you wish.
ThanksForum: Plugins
In reply to: [WooCommerce] Products disappeared after upgrading to 2.6Since I haven’t performed other actions, such as adding to cart or checking out, I can’t assure that there may not be other errors, as O’ve noticed that other users have.
Forum: Fixing WordPress
In reply to: tag and tag descriptionsolved
<?php $posttags = get_the_tags(); if ($posttags) { foreach($posttags as $tag) { echo $tag->description . '<h2 class="post_title">'; echo '<a href="http://www.mysite.com/archives/tag/'.$tag->slug.'" rel="tag">'.$tag->name.'<h1 class="section_title"></a></p>'; } } ?>Forum: Fixing WordPress
In reply to: tag and tag descriptionHi. Thank you for your answer.
I’ve been trying to “play” with get_the_tags and I almost almost get what I want.
the code I have now is
<?php $posttags = get_the_tags(); if ($posttags) { foreach($posttags as $tag) { echo $tag->description . '<h2 class="section_title"><ul><li>','</li><li>','</li></ul></h2>'; echo $tag->name . '<h2 class="post_title"><ul><li>','</li><li>','</li></ul></h2>'; } } ?>this displays me the tag description on the top of each tag.
But I have 2 little problems.1.- unlike the_tags the tags displayed don’t link to the tag page…so, how can I make them “behave” as the_tags, and link me to the specific tag page
2.- I don’t know how to give a css style to the echo results. You can see in the code aboe that I have introduced some classes such as <h2 class=”section_title”> but it doesn’t take them.
So, is there a way to do so?Thank you very much again.
V
Forum: Fixing WordPress
In reply to: dashboard crash edit postFound it..
a plugin..
ThanksForum: Fixing WordPress
In reply to: dashboard crash edit postThanks keesiemeijer.
I will try all what you say.
Last time it happened to me was a theme problem.
Let’s see what it is
Thanks