Search:
Search took 1.00 seconds.
-
That's super simple, WordPress default action... insert the "more" tag. There should be a button within the WordPress editor toolbar.
-
There's no solution for this at the moment.
-
You'll have to edit and modify taxonomy-ad_tag.php within the child theme and remove them. Make sure you note it down as you'll have to restore it after every child theme update.
-
I'm guessing that this is a WordPress setting, rather than a Classipress one.
Go to settings>>Reading>> and alter the 'blog pages show at most...' setting from 10 to around 40.
-
function remove_sold_action($actions) {
unset($actions['set_sold'], $actions['unset_sold']);
return $actions;
}
add_filter( 'cp_dashboard_listing_actions', 'remove_sold_action' );
-
It looks like there's a ClassiPress script called after the submission that attempts to access a missing tab anchor tag #priceblock2
When in fact the contact tab anchor is #contact-tab in...