Marco Constancio
Forum Replies Created
-
Forum: Plugins
In reply to: [MediaRSS external gallery] [Plugin: MediaRSS external gallery] PaginationMade some changes and this issue should now be solved in the latest version.
Forum: Plugins
In reply to: [MediaRSS external gallery] [Plugin: MediaRSS external gallery] PaginationTry updating the plugin to the latest version and see if this error is being displayed.
Forum: Plugins
In reply to: [Custom Post View Generator] Read More Links removedUpdate to the latest version that this should be fixed.
Forum: Plugins
In reply to: [Custom Post View Generator] Can't save post views or list viewsI never tested wish IIS so it might be useful you could test with other web server. However before that, please verify if you database has kind uncommon config that might cause problem and if the table wp_cpvg_post_views has any records.
Update to the lastest version (0.4.2) and use the WordPress Attachment ID(s) (Serialized) fieldtype.
The problem is that this plugin modifies the the post content and a user adds several fields and complex templates IN SOME TEMPLATES you can see html/css code when wordpress displays the excerpt on post listing.
So I added in my plugin a function called cpvg_process_excerpt that strips the tags and some content of the post content and displays it as the excerpt and that is that causes to the “Read More” disappear.
I tested again in the latest version and it didn’t seem to display html/ccs code so I commented the function.
Update to the latest version but if you are viewing code on the excerpt please uncomment the line 108 on the index.php on the plugin file.
I some case it might not work but if the custom post plugin that you are using store data in the postmeta database table you can try adding an order parameter with “Order by meta value”.
Forum: Plugins
In reply to: [Custom Post View Generator] It is only printing 6 items in any viewFirst please update to the latest version if you haven’t.
I tried check if this bug on my instalation if you are still having it please test if there is any plugin or wordpress template that causing this error by temporary disabling it, test another Custom Post View Generator list template.
If all fails please mention more details: what plugin you are using to create the custom post types, if you are using basic field or if you did set any uncomon option of th plugin that you are using and see what error are given in the browser what you the WP_DEBUG var to true on the wp-config.php file
Forum: Plugins
In reply to: [Custom Post View Generator] Can't save post views or list viewsFirst, please update to te lasted version 0.4.1 and if the problem still persists can you install firefox + firefbug for firefox, rightclick and select inspect element with firefox and see what error give on the firefox Console tab when you press the Save layout button ?
Please update to lastest version. I believe this should be fixed.
I added support for the featured image in the lateste version. It is called Thumbnail ID in the post section.
I implemented the latest version. It only works on some template since this plugin requires html table but just install the latest version and you should able to do that.
Forum: Plugins
In reply to: [Post Category Index Generator] Tags_and not working?The plugin uses the default wordpress function, so the tag function are only applied post and not categories. So, in order to do that you have to remove the categories by javascript.
Add
wp_enqueue_script( 'jquery' );to the header.php of you theme and add, to the post after the shortcode, the following code:<script type="text/javascript"> jQuery('.pcig-category').each(function(index, value) { if(jQuery(this).parent().next().is('li')){ jQuery(this).parent().remove(); } }); </script>and it should do what you want.
This seem a problem with your server and/or wordpress installation.
Check this post: http://wordpress.org/support/topic/strange-character-appearances-in-old-posts-after-db-restore?replies=11
Also check you web server configuration and see if it has the right config for displaying utf8 characters.
Forum: Plugins
In reply to: [Post Category Index Generator] Tags_and not working?You have to use the parameter show. If you don’t, the plugin will not display anything if that category doesn’t have any subcategories,
I changed the installation page to better indicate this.