dgwordpressuser
Forum Replies Created
-
Forum: Plugins
In reply to: [Share a Draft] [Plugin: Share a Draft] Custom Post Type Support+1
Forum: Fixing WordPress
In reply to: 3.3 – Pages not showing!None of my pages are showing either on 3.3.1 update. All posts and custom post types are working fine.
I have tried everything with the htaccess file to no avail. I dont think that is the problem otherwise I wouldnt be seeing my custom post types either.Oh well, I think I will try a re-install too. Shame that there are no solutions to this as I have found a few people with the same issue.
Forum: Plugins
In reply to: [Enable Media Replace] [Plugin: Enable Media Replace] White screenI am getting the same error with 3.2.1
Forum: Plugins
In reply to: Create user page for media library with download linksHi csisson,
I still havent found anything yet, but I’m stil looking.
I tried NextGen, but that doesnt let you use the media gallery items. I have looked at Catablog which is a nice simple solution, but only allows geaphic formats of jpg, gif and png which is ok, but I would like to add all types of media and not have to update it manually. WP-Filebase was another one I looked at which was similar that you have to add it manually.
In the end Attachments would probably be the best plugin as it lets you add any type of media and arrange them, but you have to manually code your template for this. Not a problem for me, but still not quite the solution I was after.
Something that just dumps anything from the media library into a template and updates dynamically.
I read something about WordPress 3.2 adding some new functionality to the library regarding adding galleries, but I am not sure what that is.
Anyway if you come up with anything or have any suggestions let me know.
Thank you.
wp_enqueue_script(‘jquery’); before my script and removing my line to jquery did the trick.
Now videos and menus are playing nicely together ??
I really appreciate your help with it Chris.
Another donation coming your way!
Hi Chris,
I just did some debugging and discovered that I have added a link to jquery in my custom template header:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
If I remove that line, then IE shows the poster image.
Happy I found the cause. But now I don’t know how to fix the conflict, because I need that link to jQuery for my menus to work.
Thoughts?
Hi Chris,
Thanks for trying that.
It seems that the encoding is now fine. But this has not solved the problem of the poster image not showing up in IE.
Any thoughts?
Forum: Plugins
In reply to: [CataBlog] [Plugin: CataBlog] installed and cant see Catalog in adminYes, that worked, thank you.
I changed in > CataBlog.class.php > public function admin_menu() {
add_object_page( to add_menu_page(
written as (& #38 ?? (without the spaces! the forum converts the proper code to just ‘&’!)
Thanks Chris, just donated a couple of pints.
Totally awesome, worked a treat.
That would be great, thanks Chris.
Forum: Plugins
In reply to: [Plugin: Job Manager] Better application emailWould really like this functionality to template email responses too.
Changing the email contents needs be a front end option.Thanks again for an amazing plug-in.
Forum: Plugins
In reply to: Custom Post Types and PluginsFirstly, thank you Microkid for a great plugin. I hope you dont mind me posting this fix for CPT and perhaps you could use it to update the next version ??
whipd09, I have found a hack to satisfy your #1 request until it makes it into the plug-in.
In the microkids-related-posts.php
I changed the following:1. change: function MRP_add_custom_box() {
add_meta_box( ‘MRP_sectionid’, __( ‘Related Posts’, ‘MRP_textdomain’ ), ‘MRP_inner_custom_box’, ‘post’, ‘normal’ );//remove this line if you dontwant it to show in normal posts
add_meta_box( ‘MRP_sectionid’, __( ‘Related Posts’, ‘MRP_textdomain’ ), ‘MRP_inner_custom_box’, ‘archives’, ‘normal’ );//change archives to the name of your custom post type. You could also add more types by copying this line for each type.2.function MRP_inner_custom_box() {
change: if( $related_post->post_type == ‘page’ ) { to if( $related_post->post_type == ‘archive’ ) {3. change $post_title = “[Page] ” . $post_title; to $post_title = “[Archive] ” . $post_title;
4. function MRP_save_postdata( $post_id ) {
change: if ( ‘page’ == $_POST[‘post_type’] ) { to if ( ‘archives’ == $_POST[‘post_type’] ) {
5. function MRP_auto_related_posts( $content ) {
if( get_post_type() == ‘page’ ) { to if( get_post_type() == ‘archives’ ) {Lastly in mrp-search.php, change:
$query = “SELECT ID, post_title, post_type, post_status FROM $wpdb->posts WHERE $where AND ( post_type = ‘archives’ OR post_type = ‘page’ ) “; to your post type.Hope it helps someone.
Edit: I also added this into admin_init() function in my custom functions file when registering the CPT: add_meta_box( ‘MRP_sectionid’, __( ‘Related Links’, ‘MRP_textdomain’ ), ‘MRP_inner_custom_box’, ‘archives’, ‘normal’ );
OK Just figured out. Man was struggling with this for ages, what a relief.
changed: add_action(“manage_posts_custom_column”, “project_custom_columns”);
to:
add_action(“manage_pages_custom_column”, “project_custom_columns”);Hope it helps someone.
Anyone?