Justinabes
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Social AutoConnect] [Plugin: WP-FB-AutoConnect] BuddyPress Compatible?Hi Support
We are experiencing issues with users that have connected using Facebook connect with the WP-FB-AutoConnect plugin.
It creates users with spaces in the URL so any profile created using the plugin redirects back to home page.
Example: https://shapemag.feedmydemo.co.za/members/Donavan%20Costaras/
How can we over come this issue?
Thanks in advance.
Forum: Fixing WordPress
In reply to: [Plugin: Wp-e-commerce] Pagination for products not workingTried the above recommendation, URL Settings – settings options updated.
Pagination still isn’t working on the products page.
https://www.originroasting.feedmydemo.co.za/the-coffee/products-page/WordPress 2.8.4
WP Shoping Cart Version 3.7.2
WP-PageNavi Version 2.50Forum: Fixing WordPress
In reply to: Contact Form 7 – Not sendingThis is a new issue, it has been working with no issues.
There are 2 forms on this site
https://praesta.co.za/contact/
https://praesta.co.za/2009/07/23/powerful-conversations-for-new-leaders-event/
They worked a week ago, now not.Forum: Plugins
In reply to: Pagenation issuePagenation issue fix
<p>We were using multiple "query_posts" statements in our archive.php file</p>
<p>I declared these at the top of the page to get the current category ID</p>
<p> </p>
<pre class=”script” function=”syntax.Php”>$this_cat_title = single_cat_title(“”, false); // Get the title of the category
$this_cat_id = get_cat_ID( $this_cat_title ); // Get the id from the title
<p>Then i inserted these lines
</p>
<pre class=”script” function=”syntax.Php”><?php
$paged = (get_query_var(‘paged’)) ? get_query_var(‘paged’) : 1;
$args=array(
‘paged’=>$paged,
‘posts_per_page’=>8, // How many posts you would like on a page
‘cat’=>$this_cat_id // You will only need this if you have multiple loops on one page
);
query_posts($args); ?>
<p> above the start of your loop(s) here</p>
<pre class=”script” function=”syntax.Php”><?php while (have_posts()) : the_post(); ?><p>
</p>
<p>
</p><p> </p>