zaidapicazo
Forum Replies Created
-
Forum: Plugins
In reply to: [Tidio – Live Chat & AI Chatbots] Move Widget 35 px to the leftHello,
I would like to change the position in mobile version too because I nearly can’t see the button chat.
I checked it and i see tidio-chat-button-mobile has css inline right:-10px. How can I change it?
Thanks in avance!
ZaidaForum: Plugins
In reply to: [Mega Menu by WooRockets.com] WYSIWYG not working in text blockAny luck?
Thanks!Forum: Plugins
In reply to: [Enjoy Social Feed plugin for WordPress website] Update Owl Carousel to v2Hi,
Is this why there is a javascript error?
Uncaught TypeError: $(“.swipebox”).swipebox({ is not a functionThanks
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] mailpoet import csv problemHi,
Did it work? I have had the same problem.
As I have them imported already, can I import all of the again without duplicating and only adding the name? What are the options?
Thank you!Hello,
I have exacly the same problem. How is this improvement going?
By the way, the last version I can have is 1.x instead 2.x, Why is this?
Thanks!Forum: Plugins
In reply to: [Import and export users and customers] It doesn't save emailI tried in local, deactivate all plugins and it didn’t work. It only saves username
Forum: Plugins
In reply to: [W3 Total Cache] Doesn't show new imagesThank you Kimberly. It is what I though. I’ll be in alert if the configuration I set is working ??
Forum: Plugins
In reply to: [WooCommerce] Connect with ERPI need the same. Did you find any solution?
ThanksForum: Plugins
In reply to: [WooCommerce] Woocommerce cancelled order without reasonFixed!
Here is the solution:
https://www.jeriffcheng.com/unpaid-order-cancelled-time-limit-reached.htmlHello,
I have the same problem. How did you fix it? Actually, I changed in the popups to not be fixed and they don’t save the configuration and shows it fixed anyway…
Did it happen to you? Could the creator help me?
Thank you very much in advance
ZaidaForum: Plugins
In reply to: [Hyyan WooCommerce Polylang Integration] variable product price problemHello,
I have the same problem. When do you have planned more os less the next release?
ThanksForum: Fixing WordPress
In reply to: search result in the same pageHello again, noone know how I could show search results in a normal page, not archive or search page? How could I get search results? I’ve got a page template with some filters which show results in the same page and I would need to achieve search results in that page too.
I tried to change action to my page:
$buscador = '<form role="search" action="'. site_url('/') .'" method="get" id="searchform"><input class="introducir-termino-busqueda" type="text" name="s" placeholder="'. __('Search ...','cleanstart-child').'"/><input type="hidden" name="post_type" value="recurso" /><input class="buscar" type="submit" alt="Search" value="" /></form>';
to
$buscador = '<form role="search" action="'. site_url('/es/recursos/') .'" method="get" id="searchform"><input class="introducir-termino-busqueda" type="text" name="s" placeholder="'. __('Search ...','cleanstart-child').'"/><input type="hidden" name="post_type" value="recurso" /><input class="buscar" type="submit" alt="Search" value="" /></form>';
But it says 404 page not found in that case.
Hope someone can help me.
Thank you!
In my case, I was writing wrong
'paged' => get_query_var( 'page' ),
in args. Right now it works perfectly. My code is (I have cleaned):$paged = get_query_var('paged') ? get_query_var('paged') : 1; // Query arguments $args = array( 'posts_per_page' => 6, 'post_type' => 'proyecto', 'orderby' => 'date', 'paged' => $paged, ); $post_query = new WP_Query($args); // At first, we assign the post results to a variable. We do this first, in order to get the // specific categories present (avoiding this way, to show an empty category tab) if( $post_query->have_posts() ) { // The loop $section_posts = ''; while ( $post_query->have_posts() ) : $post_query->the_post(); //while ($post_query->have_posts()) { //$post_query->the_post(); // Set the array that will contain all the resulted posts categories $categories = array(); $fechas = array(); // Get the post's categories (use wp_get_object_terms for custom post type) $post_categories = wp_get_object_terms( get_the_ID(), 'proyecto-type' ); // Get the post's categories (use wp_get_object_terms for custom post type) $post_fechas = wp_get_object_terms( get_the_ID(), 'proyecto-fecha' ); $post_cat_classes = ''; $post_cat_names = ''; $post_fecha_classes = ''; $post_fecha_names = ''; if (!empty($post_categories) && !is_wp_error( $post_categories ) ) { // Set the variable that will contain all the categiry selector classes foreach ($post_categories as $category) { $categories[] = $category->name; $post_cat_classes .= strtolower(sanitize_html_class( $category->name )) .' '; $post_cat_names .= $category->name .' '; } } if (!empty($post_fechas) && !is_wp_error( $post_fechas ) ) { // Set the variable that will contain all the categiry selector classes foreach ($post_fechas as $fecha) { $fechas[] = $fecha->name; $post_fecha_classes .= strtolower(sanitize_html_class( $fecha->name )) .' '; $post_fecha_names .= $fecha->name .' '; } } $thumb_url = wp_get_attachment_image_src( get_post_thumbnail_id( get_the_ID() ), 'large') ; echo '<div class="'. $post_cat_classes .'col-xs-12 col-sm-6 col-md-12 col-lg-12">'."\n"; echo ' <div class="proyecto_item col-md-12">'."\n"; echo ' <div class="col-md-5 col-xs-12 img-proyecto">'."\n"; echo ' <img src="'. esc_url( $thumb_url[0] ) .'" alt="'. esc_attr( get_the_title() ) .'" />'."\n"; echo ' </div>'."\n"; echo ' <div class="proyecto_description col-md-7 col-xs-12"><h2 class="titulo-proyecto">'. get_the_title() .'</h2>'."\n"; echo ' <p class="texto-proyecto">'. get_the_content() ."\n"; echo ' <div class="datos-extra">'."\n"; foreach ($categories as $categorykey=>$categoryname) { echo ' <p class="tipo-proyecto">'. $categoryname .'</p>'."\n"; } foreach ($fechas as $fechakey=>$fechaname) { echo ' <p class="fecha-proyecto">'. $fechaname .' </p>'."\n"; } echo ' </div>'; echo ' </div>'; echo ' </div>'."\n"; echo '</div>'."\n"; endwhile; //while //Navigation Code if ( $post_query->max_num_pages > 1 ) { if ( function_exists('wp_pagenavi' ) ) { wp_pagenavi( array( 'query' => $post_query ) ); } } } else { return; }//if I have post wp_reset_query();
Hope this helps you
What I did in product page is to pass the ID into te contact form using:
[dynamichidden TripID “CF7_get_post_var key=’ID'”]
It takes the ID product
I don’t know if that can help you
Hello,
Have you resolved this? I’m very interesting in this too.
Would you help me to achieve it?
Thanks!