victordever
Forum Replies Created
-
You can use Advanced Post Pagination, it allows you to add title, description and image in pagination buttons.
Link to this plugin page: http://wordpress.org/plugins/advanced-content-pagination/
It has own shortcode, but it’ll find your -nextpage-‘s and use those for advanced button creation as well.
We were working on our site, however you can see all screenshots here:
http://profprojects.com/category/blog/wordpress-plugins/free-wordpress-plugins/universal-post-manager/Forum: Fixing WordPress
In reply to: How to convert phpNuke and vBulletinCMS to WordPressOk, nice!
Thank you John. I’ll try this.Here is the plugin’s site http://profprojects.com/blog/ and it works fine. I don’t see any problem.
Forum: Plugins
In reply to: [UPM Polls] Error when posting certain pollsHmm this forum board is showing wrong my code, please just add:
@
after:
$pnum =So result will be:
$pnum = @mysql_…….
Forum: Plugins
In reply to: [UPM Polls] Error when posting certain pollsOpen wp-content/plugins/upm-polls/functions.php file in notepad
Find:
$pnum = mysql_num_rows(mysql_query("SELECTidFROM“.$wpdb->prefix.”pppm_polls_votesWHEREqid= ".intval($POLL['id']) ));Replace:
$pnum = @mysql_num_rows(mysql_query("SELECTidFROM“.$wpdb->prefix.”pppm_polls_votesWHEREqid= ".intval($POLL['id']) ));It’s already added in UPM 1.1.1 release, coming tomorrow.
You should edit /plugins/upm-polls/functions.php
line 255 and line 410Find “Next Poll” and change it, there is not other ways to do that by now
Forum: Plugins
In reply to: [Joomla/Mambo To Wordpress Migrator] im getting multiple errorsCheck your database connection, seems you are connected to wrong database.
It’s saying that there is no such table in your current connected database, or may be table prefix is wrong, if it’s not helping you can check this out http://gconverter.com/joomla-to-wordpress/ , they will help you convert your Joomla to wordpress within few hours with Tags and Comments.Forum: Plugins
In reply to: query_posts is not working for search loopHey somebody knows how can I resolve this problem ?
Forum: Plugins
In reply to: I need bookmarking plugin but …Or help me to modify tweet-this to show Text+Icon
Forum: Fixing WordPress
In reply to: problem with get_parent_category()$Cat_ID i use for
query_posts( 'cat='.$Cat_ID );Forum: Plugins
In reply to: Which filter hook can I use to sort posts in categories?Thanks tianbo84 , it very useful , but I need some hooke instead of plugin ,be cause it will be use without any administrativ settings .
Forum: Fixing WordPress
In reply to: How can I find appkey of my blogI don’t think so , the appkey is something different and it is used in xmlrpc queries such as this code
metaWeblog.deletePost (appkey, postid, username, password, publish) returns booleanWho know what key is this appkey
Forum: Fixing WordPress
In reply to: XML-RPCOk , I found the way , it is possible whit metaWeblog.editPost query , only need set array without id’s of custom fields.
$cf_array = array( "key" => $_POST['key'], "value" => $_POST['value'] ); $post = array( "title" => $_POST['title'], "description" => $_POST['description'], "mt_excerpt" => $_POST['mt_excerpt'], "custom_fields" => $cf_array);Thanks