pauti12
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Woocommerce – not receiving emailsSolved
Thank you!!
Forum: Plugins
In reply to: [Contact Form by Supsystic] How to add a ccI meant to send a copy of the email to the person who filled the form, but I already found out the answer. I had to add [user_email]. Thank you for your support
That’s perfect! Thank you for the quick answer
Forum: Plugins
In reply to: [Popup by Supsystic] How to add a popup to a buttonFixed it!
I found my answer here: https://supsystic.com/open-popup-on-click/I didn’t know I had to add the short code and the href=”#ppsShowPopUp_100. I thought I had to use just one of them, so that’s the reason it wasn’t working.
Cheers!
Forum: Plugins
In reply to: [Popup by Supsystic] How to add media queries to the cssPerfect! Thank you
You were right! It’s solved just adding offset=”5″
The problem was that it wasn’t working because I pasted your quotes and they weren’t the correct ones!Congratulations for the plugin, it is exactly what I was looking for
No, it’s doesn’t work… I still have the same issue…
Hello,
I don’t know why but the plugin is not working correctly on my page.
On the static page I show 5 posts and then, when I click “load more” it shows all the posts, but also the ones that were showing on the static page, so they appear twice…
Could you help me with this? My code is below:<?php
$first_loop = array(
‘posts_per_page’ => 5,
‘cat’ => array(6,7,8,9),
);
?><section class=”two-columns_updates”>
<div class=”row1″>
<article class=”left-column”><?php $the_query = new WP_Query( $first_loop ); ?>
<?php if ( $the_query->have_posts() ) : ?><?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<article id=”post-<?php the_ID(); ?>” class=”article <?php post_class(); ?>” >
// Displays the post
</article><?php endwhile; ?>
<?php wp_reset_postdata(); ?>
<?php else : ?>
<p><?php _e( ‘Sorry, no posts matched your criteria.’ ); ?></p>
<?php endif; ?><?php echo do_shortcode(‘[ajax_load_more post_type=”post” category__not_in=”16″ pause=”true” pause_override=”true”]’); ?>
</div></section>
Thank you!
Yes, I know. But I didn’t know that I could add JavaScript on the Repeater Template, so I tried it and now it’s working.
Thanks!Yes! That was what I was looking for. Thank you
Also, I was modifying the Repeater Template, but it’s not working. Could it be because it doesn’t read JavaScript actions that I have on my files.php?
I was doing something like this:
<?php if (in_category(‘example’)) { ?>
<div class=”show-hide”>
<div class=”excerpt”><?php the_excerpt(); ?></div>
<div class=”content”><?php the_content(); ?></div>
</div><?php endif; ?>
The “show-hide” tag is calling a script. This works on my theme, but it doesn’t work when I click the Load more button. It just displays all the content…
Thank you