Pancho Perez
Forum Replies Created
-
sorry, my foult! ??
Just be sure in the single.php is using
<?php while ( have_posts() ) : the_post(); ?>
??
weird, nether can uncheck the checkbox in the post to don′t show the buttons :S
Forum: Plugins
In reply to: [Register Plus Redux] Registration in FrontendLooking for the same option. Seams the plugin does′t have a shortcode or code to use the registration in the frontend. Did you solve this?
Forum: Plugins
In reply to: [Register Plus Redux] Compatibility w WP 3.8.1In my case works.
Fixed.
Just add this before the
related_posts
arraywp_reset_query(); related_posts(array(
And for the relation, increase the threshold to 1.
Forum: Plugins
In reply to: [Swift SMTP (formerly Welcome Email Editor)] New account activationIs this solved?, I can′t edit the activation email ??
Forum: Plugins
In reply to: [Custom Post Template] Use only for Custom Post TypeIt works! ?? thanx @gtso86
Forum: Plugins
In reply to: [Featured Video Plus] Using Custom Post Typeyes, that hack resolve my needs.
Maybe you can add this settings in the settings -> writing to choos the CPTs to use the featured videp plus box.
Thanx in advance.
Forum: Plugins
In reply to: [Really Simple CAPTCHA] Not imput fieldSorry, I didn′t see nees two shortcodes, one for the image and other for the input.text. ??
Forum: Plugins
In reply to: [Featured Video Plus] Using Custom Post TypeHi,
I found a way, is not part of the plugin but is a hack inside the theme to remove the Featured Video Metabox for specific CPTs using add_meta_boxes action.
use this code:
/*Remove metaboxs from CPTs*/ add_action( 'add_meta_boxes', 'custom_remove_meta_boxes' ); function custom_remove_meta_boxes() { /* MY_CPT */ remove_meta_box( 'featured_video_plus-box', 'MY_CPT', 'side' ); /* page */ remove_meta_box( 'featured_video_plus-box', 'page', 'side' ); /* post */ remove_meta_box( 'featured_video_plus-box', 'post', 'side' ); }
Hope it helps.
I use acpt framework to add the CPTs and Custom TAX.
But I think this affect the wat WP templates works, right ?
My problem is with the subTaxonomy url. Don′t work and neader use the taxonomy template.
Thanx for the help ??
Forum: Plugins
In reply to: [Simple Local Avatars] Rectangle not square avatars?+1
Forum: Plugins
In reply to: [Taxonomy Images] Media Library appears empty (WP 3.6)+1
I′m having the same problem.
Forum: Plugins
In reply to: [Custom Post Template] Use only for Custom Post TypeI think with a filter in funcionts.php is more than enough ??
Forum: Plugins
In reply to: [Featured Video Plus] Use post video & post thumbnail inside the Themedon′t know why or what happend but works in both, local and host server ??