Meeker
Forum Replies Created
-
Forum: Plugins
In reply to: [Connections Business Directory] Google Maps integrationOkay many thanks Steven!
Forum: Plugins
In reply to: [WP SEO Structured Data Schema] Add Support for custom post typesHi there, I am looking to find your Pro Version, but this website asks for a password??
I am looking to make your plugin work with CPT’s.
Thanks…
Forum: Plugins
In reply to: Stop Options Page stripping tagsI have discovered that altering RationalOptionPages.php is getting closer. This section cleans up the options page code:
protected function sanitize_setting( $page_key, $input ) { $page = $this->pages[ $page_key ]; if ( !empty( $page['sections'] ) ) { foreach ( $page['sections'] as $section ) { if ( !empty( $section['fields'] ) ) { foreach ( $section['fields'] as $field ) { switch ( $field['type'] ) { case 'checkbox': if ( empty( $input[ $field['id'] ] ) ) { $input[ $field['id'] ] = false; } break; default: $input[ $field['id'] ] = strip_tags($input[ $field['id'] ]); $input[ $field['id'] ] = esc_attr($input[ $field['id'] ]); } } } } } return $input; }
However, if I remove strip_tags, then this does indeed stop the tag stripping, but then substitudes all the tags for special characters as follows:
- abc
Any ideas?
Forum: Themes and Templates
In reply to: Custom Post Type – filter by categoryI solved the problem eventually. I added in the following into the array immediately after the line ‘showposts’ => 2,
'category__in' => array(7),
Forum: Fixing WordPress
In reply to: CPT give each post retrieve a unique classGreat thanks, much appreciated.
Forum: Plugins
In reply to: Custom Post Type only show for 1 categoryAny ideas anyone please?
Forum: Plugins
In reply to: [WP Store Locator] Some stores missingMy case is solved. I think it was really an admin error from the client! Thanks to all those who responded. When I re-entered the information, it does show
Forum: Plugins
In reply to: Custom Post Type will not execute shortcodeNo sooner do I post, than I cracked it!
$testslider1 get_field(‘rev_slider’,$post->ID);
echo do_shortcode(”.$testslider1.”);It was putting the double quotation marks before and after which worked. Solved!
Forum: Themes and Templates
In reply to: [Dzonia Lite] Theme causing admin panel to go blankIf I use one of the default themes, the problem disappears. I just updated the core and plugins, no joy. I also tried disabling all the plugins, also no joy.
Forum: Plugins
In reply to: [Testimonial Basics] PaginationIt might also be worth as a last resort entering the following into the page at the bottom manually:
<form method="POST"><input type="hidden" name="tb_group" value="All" /><label class="katb_input_label1">Author *</label><input type="text" maxlength="100" name="tb_author" value="" /><br/><label class="katb_input_label1">Email *</label><input type="text" maxlength="100" name="tb_email" value="" /><br/><label class="katb_input_label1">Website</label><input type="text" maxlength="100" name="tb_website" value="" /><br/><label class="katb_input_label1">Location</label><input type="text" maxlength="100" name="tb_location" value="" /><br/><label class="katb_input_label2">Testimonial *</label><br/><textarea rows="5" name="tb_testimonial" ></textarea><div class="katb_captcha"><img src="https://www.example.com/wp-content/plugins/testimonial-basics/includes/katb_captcha_bw.php" alt="Verification Captcha" /><input type="text" id="verify_main" name="verify" value="Enter Captcha" onclick="this.select();" /></div><input class="katb_submit" type="submit" name="katb_submitted" value="Submit" /><input class="katb_reset" type="submit" name="katb_reset" value="Reset" /><input type="hidden" id="katb_main_form_nonce" name="katb_main_form_nonce" value="99701520de" /></form>
You will have to change the domain name and possibly the value code at the end. To find that you might need to go into the DB table and have a look around.
Forum: Plugins
In reply to: [Testimonial Basics] PaginationHi there, I can see that your paginate code is empty if compared to mine. I would suggest temporarily disable all other plugins to see if that does anything. This is the code I used:
<code>[katb_testimonial group="all" by="date" id=""]</code>
Forum: Plugins
In reply to: [Testimonial Basics] PaginationOk that worked, many thanks Kevin.
Forum: Reviews
In reply to: [Testimonial Basics] Easy to useLooking forward to it!
Forum: Reviews
In reply to: [Testimonial Basics] Easy to useMarvelous! Any idea when this will be?
Also another useful feature would be to approve multiple testimonials at the same time and possibly a star rating system!
Forum: Plugins
In reply to: [WP Super Cache] Why would you not want BOTS to cause cachingI am wondering this also.