masterbip
Forum Replies Created
-
Forum: Plugins
In reply to: [PS Auto Sitemap] qtranslate compatibilityAny Luck?
I still got the issue …
??Forum: Plugins
In reply to: [Sidebar Login] Hide "welcome user" messageJust one more thing.
If I left blank the logedin welcome message textbox in the sidebar manager, by default, instead of show nothing, shows me the default “Welcome ‘username'”.Same thing happen with the logout user message. I got empty option but shows me the default text.
I think this is a bug.
That would be the solution.Thanks again in advance, hoping a quick answer.
Forum: Plugins
In reply to: [mqTranslate] mqTranslate and Woocommerce – Short description not workingmqtranslate_wphacks.php
Forum: Plugins
In reply to: [mqTranslate] mqTranslate and Woocommerce – Short description not workingOG-S, thanks for that … but we will lose that change in futures upgrades or releases. meanwhile i’ll try that, but I think this must be part of the next official plugin upgrade.
Thanks!
Forum: Plugins
In reply to: [mqTranslate] Custom menu links bugI figured out that this is caused with the MQTRANSLATE plugin. Y changed back to qTranslate and the problem is solved. It is not a wordpress issue but that plugin problem.
Thanks!
Forum: Plugins
In reply to: [mqTranslate] Custom menu links bugI got the same issue here. If I create a custom link to an anchor (#item) The plugin replace the output href link from
<a href="#item">
to
<a href="https://www.mysite.com/#item">
Breaking my smooth scroll navigation…
Any help?
Thanks in advance.Forum: Plugins
In reply to: [mqTranslate] Contact Form 7 TitlesIt looks like the problem was solved in one of the last CF7 updates. So I think this is solved now.
Thanks!Forum: Plugins
In reply to: [IM8 qTranslate WooCommerce] Short description does not store textI made the same question in qtranslate, mqtranslate and seems like nobody got an answer to us…
Maybe just a temporary fix …
I have search everywere without any luck ??Thanks in advance …
Forum: Plugins
In reply to: [mqTranslate] mqTranslate and Woocommerce – Short description not working3 weeks and still no answer … I’m really not an expert, but I know that out there are really mqutranslate and woocommerce genious !!!!
No answer? I never got an answer for this plugin here … ??
Forum: Plugins
In reply to: [Taxonomy Images] Can't get random 4 terms with imagesYES!°
Find the answer by myself and also with random!!!<?php //display random sorted list of terms in a given taxonomy $counter = 0; $max = 4; //number of categories to display $taxonomy = 'categoria-proyecto'; $terms = get_terms($taxonomy); shuffle ($terms); //echo 'shuffled'; if ($terms) { foreach($terms as $term) { $counter++; if ($counter <= $max) { echo '<div class="col-1-4"><div class="content">'; echo '<a href="'.esc_attr(get_term_link($term, $taxonomy)).'" class="redondeado">'; apply_filters( 'taxonomy-images-get-terms', '', array('taxonomy' => $taxonomy) ); echo wp_get_attachment_image( $term->image_id, 'destacado-proyectos-home' ); echo '<span>'.$term->name.'</span></a></div></div>'; } } } ?>
That’s it!
Forum: Plugins
In reply to: [mqTranslate] Contact Form 7 TitlesIs not about the creation of the contact form. Actually I got one contact form for each language (4)
The thing is the title. When I save, let’s say, contact form in spanish, the plugin still try to add the language code to that title, so if I insert in the contact form title CONTACTO, after saving it, the title and the shortcode change to <!–:es–>CONTACTO<!–:–><!–:en–>CONTACT<!–:–>That is the issue, maybe the plugin is taking the contact form title and adding the code, wich is wrong, because title is used only to, like, identifier.
I still wait for helo. Thanks!
Forum: Plugins
In reply to: [Taxonomy Images] Use outside taxonomy term archive page templatesBy the way. I am using wp-types plugin to set custom post types and taxonomies. And works perfect!!!
Forum: Plugins
In reply to: [Taxonomy Images] Use outside taxonomy term archive page templatesI waster 2 hours … to realize that i havent set to any of my taxonomies an image … so i set an image to every term in my taxonomies, upload again te code… And all works fine (I’m such a tonto!)
The code is this
<?php $terms = apply_filters( 'taxonomy-images-get-terms', '', array('taxonomy' => 'categoria-proyecto') ); foreach( (array) $terms as $term) { echo wp_get_attachment_image( $term->image_id, 'destacado-proyectos-home' ); }?>
Where “categoria-proyecto” is my taxonomy slug and “destacado-proyectos-home” is the custom image size.
Feel free to add echo and code.
And that’s it!
Forum: Plugins
In reply to: [Taxonomy Images] Use outside taxonomy term archive page templatesI’m looking for the same thing. If I got the solution I’ll include it here later.