Mike_sa
Forum Replies Created
-
Got the same problem….
I have not required the use of the WCK plugin for a while but seeing that they have not fixed a small issue within a month , I am rather going to move to ACF plugin… far superior ??
Forum: Plugins
In reply to: [New Nine Adaptive Images] 404 image not foundI had the same problem.
On further investigation and looking at the origon of the plugin ( https://adaptive-images.com/ ) it appears that the script will only work when operating at root level.I moved the site to the root of my test server and everything worked perfectly.
Still have not figured out how to get it too work in the dev folder, I tried the same as you with no success.
Forum: Plugins
In reply to: [SuperCPT] Adding meta box to admin side of specific page templateAwesome ?? Thanks so much ??
It works perfectly ?? I must investigate the javascript route ??I have one last question for you well it could be 2 ??
I am wanting to populate the select menu with the terms of a taxonomy….
Could you please point me in the right direction ..I am not sure if I should be using the $tsuppliers2->add_to_columns………
or how to go about it…I was planning on using the get_terms($taxonomy_name) yet it returns nothing on the back end yet of the public side of the site it return an array no problem at all ….
Sorry a bit off track there ??
Forum: Plugins
In reply to: [SuperCPT] Comments saying closedsolved it ??
needed to add support for comments for the custom post type ??add_post_type_support( $post_type, $supports )
Forum: Plugins
In reply to: [SuperCPT] Comments saying closedone more thing, the allow comments check box does not appear in the admin editor for the custom post
Forum: Plugins
In reply to: [SuperCPT] Not able to get SuperCPT too workThanks ??
I am actually following it ??
is there an option for just an upload button ?Forum: Plugins
In reply to: [SuperCPT] Not able to get SuperCPT too workIt is not my weekend for coding ??
sorry saw it was a typo used = instead of ->
Sorry for bothering you ??
Forum: Plugins
In reply to: [SuperCPT] Not able to get SuperCPT too workHi Mathew
Sorry to bug you again… I am having an issue adding a meta box…. I keep geting the fatal error that the function add_meta_box is not defined .
add_action('after_setup_theme','cont_boxes_home'); function cont_boxes_home(){ if(!class_exists('Super_Custom_Post_Meta')) return; $post_meta = new Super_Custom_Post_Meta('page'); $post_meta = add_meta_box( array( 'id' => 'boxes', 'title' => 'content boxes', 'context' => 'normal', 'fields' => array( 'content-box1' => array( 'type' => 'wysiwyg' ) ) ) ); }
I tried using the add_action(‘add_meta_boxes’,’cont_boxes_home’);
Same error message….
Have I done something wrong ?
Forum: Plugins
In reply to: [SuperCPT] Not able to get SuperCPT too workAwesome, I can already see that I will prefer this plugin to Custom Post type UI and WCK Fields.
Thanks for all the help, have an awesome weekend ??
Forum: Plugins
In reply to: [SuperCPT] Not able to get SuperCPT too workOne last question ??
Does the SuperCPt plugin have the option of repeater fields ?
Thanks ??Forum: Plugins
In reply to: [SuperCPT] Not able to get SuperCPT too workI just removed the wp_die and it is suddenly working ??
I must have had a typo, which I did check for that was just fixed ??
Many thanks, it is resolved now. I look forward to playing with the plugin ??
Thanks very very much for the help, especially on a friday ??
Forum: Plugins
In reply to: [SuperCPT] Not able to get SuperCPT too workit also kills the site when wp_die is added to the end of the function ??
Forum: Plugins
In reply to: [SuperCPT] Not able to get SuperCPT too workcorrection, it does kill the site…bloody typo on the wp_die
Forum: Plugins
In reply to: [SuperCPT] Not able to get SuperCPT too workno that does not kill the site
Forum: Plugins
In reply to: [SuperCPT] Not able to get SuperCPT too workI think I must have misunderstood you ??
I changed both the add_action and the function…. if I just change the add_action, nothing happens