rivkasa
Forum Replies Created
-
Forum: Plugins
In reply to: [Redirection] Parameters not being passed to targetThank you for your reply. I checked it in incognito and it worked
Sorry for not updating earlier – Works beautifully now and really enhances the website.
Thank you so much!
Thank you so much for your speedy reply
I tried it on a page that has several instances of the shortcode.
The first two didn’t work but the others did….If I give it a value it doesn’t work either…
I am having this issue as well
The standard query returns posts
$nargs = array(
‘posts_per_page’ => -1,
‘post_type’ => ‘post’,
‘meta_query’ => array(
array(
‘key’ => ‘_vid’,
‘compare’ => ‘NOT EXISTS’
)
)
);
$pageposts = get_posts( $nargs );but the following shortcode doesn’t:
echo do_shortcode(‘[ajax_load_more posts_per_page=”4″ meta_key=”_vid” meta_compare=”NOT EXISTS” button_label=”MORE” ]’);The _vid field is an “Upload” type field…
Just did ??
Thank you so much again!
No problem ??
Thank you so much! It is truly a wonderful plugin
Hi
Thank you very much for your prompt reply.
As of now I am trying out the free version and just noticed the issue when switching back and forth.
Forum: Plugins
In reply to: [Flexible Map] Hide the text bubbleIndeed it is ??
Looks great. Thank you so much for your wonderful plugin and support
Forum: Plugins
In reply to: [Flexible Map] Hide the text bubbleHi Ross
Thank you so much for your prompt reply
This is the code I am using in my theme file which still does display the popup. I want the form to constantly be displayed below the map but still want to hide the popup.
flexmap_show_map(array( ‘address’ => $location, ‘width’ => 450,
‘height’ => 380,
‘showinfo’=>false,
‘hidepanning’ => true,
‘showdirections’=>true,
));Mant thanks,
RebeccaForum: Fixing WordPress
In reply to: crashing site when used within loop displaying a listdeepbevel – sorry I didn’t reply earlier, I didn’t get an alert that you posted. Thanks again for all your assistance. You rock!
Forum: Fixing WordPress
In reply to: crashing site when used within loop displaying a listJust about got it working using this: https://weblogtoolscollection.com/archives/2008/04/19/paging-and-custom-wordpress-loops/
Forum: Fixing WordPress
In reply to: crashing site when used within loop displaying a listThanks so much! I don”t want you spending too much time on this ??
Forum: Fixing WordPress
In reply to: crashing site when used within loop displaying a listThis one?
<?php query_posts( array( 'posts_per_page' => 2, 'cat' => '13', '14', 'paged' => ( get_query_var('paged') ? get_query_var('paged') : 1 ), ));?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> [...] <?php wp_reset_query();?>
I didn’t see pagination but could be I’m missing something in my template
Forum: Fixing WordPress
In reply to: crashing site when used within loop displaying a listI’m trying to create a secondary loop which is a list of titles from several categories. This works, but I cannot paginate it.