HolyBatNipplesBatman
Forum Replies Created
-
Forum: Plugins
In reply to: [AdRotate Banner Manager] AdRotate Group working fineI got it now I found were to add Groups and everything is working now.
for the Groups go to:
AdRotate/Manage Groups
Forum: Plugins
In reply to: [AdRotate Banner Manager] AdRotate Group working fineWhat did you do??
I created 6 ads and in the widget i chose the Group of Ads – Use Group ID.
In the ID section I placed 1,2,3,4,5,6 then saved but still same error.
Error, group does not exist! Check your syntax! (ID: 1)
Were do I go to class them as a group?
Thanks
Forum: Fixing WordPress
In reply to: pagination next/previous goes to next article.i fixed my problem but still need to work on the style
<div class=”page-link”>
<?php
if($page === 1)
{
previous_post(‘%’,’Previous’,”);
}
?>
<?php wp_link_pages(array(‘before’ => ‘<span id=”prev-link” class=”next-prev-link”>’,’after’=>'</span>’, ‘previouspagelink’ => __( ‘Previous’ ),’nextpagelink’ =>__( ” ), ‘next_or_number’=>’next’)); ?>
<?php wp_link_pages( array( ‘before’ => ”, ‘after’ => ” ) ); ?>
<?php wp_link_pages(array(‘before’ => ‘<span id=”next-link” class=”next-prev-link”>’,’after’=>'</span>’, ‘previouspagelink’ => __( ” ),’nextpagelink’ =>__( ‘Next’ ), ‘next_or_number’=>’next’)); ?>
<?php
if($page === $numpages)
{
next_post(‘%’,’Next’,”);
}
?>
</div>