thesabeltuto
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP 4.2> My Featured Images are goneOKAY! FOUND THE ULTIMATE FIX FOR ALL
add_theme_support( 'post-thumbnails' ));apparently there’s no need to add array of custom posts.. somehow it automatically gets added to all posts types…
geezzz… 😀
Forum: Fixing WordPress
In reply to: WP 4.2> My Featured Images are goneUPDATE: I was able to make “FEATURED IMAGE” on Posts and Pages work BUT STILL NOT WORKING WITH MY CUSTOM POSTS… codes update below:
functions.php:
add_action( 'after_setup_theme', 'theme_add_on' );each custom post types register_post_type $args has this line:
'supports' => array( 'title', 'thumbnail', 'excerpt', 'comments' ),So, not sure why “FEATURED IMAGE” still not working with my Custom Posts!!!
Forum: Fixing WordPress
In reply to: WP 4.2> My Featured Images are goneUPDATE: I was able to make the Posts and Pages show Featured Images BUT I’M Still NOT seeing Featured Images on my Custom Posts Types. See code below:
functions.php:
add_action( 'after_setup_theme', 'theme_add_on' ); function theme_add_on() { add_theme_support( 'post-thumbnails', array( 'procedures', 'offers', 'before-and-afters', 'office-images', 'testimonials', )); }I still need help on making these thumbnails show on each custom posts…
Each register post type args has this line:
'supports' => array( 'title', 'thumbnail', 'excerpt', 'comments' ),Why it’s still not showing?! T____T
Forum: Plugins
In reply to: [TT - Subscribe] WordPress Warning after installationVersion 2.0 is Out! No more Warnings after installation!
== Changelog ==
1. A Shortcode has been added to this plugin.
1. 1. To add the shortcode to your Posts / Pages please include the code[tt_subscribe]
2. A Widget has been added to this plugin.
2. 1. To add the widget to your Theme please drag and drop theTT-Subscribewidget to your desired location on the theme.Forum: Reviews
In reply to: [TT - Subscribe] No Shortcode or Widget – PHP code in theme file requiredversion 2.0 is now out!
== Changelog ==
1. A Shortcode has been added to this plugin.
1. 1. To add the shortcode to your Posts / Pages please include the code[tt_subscribe]
2. A Widget has been added to this plugin.
2. 1. To add the widget to your Theme please drag and drop theTT-Subscribewidget to your desired location on the theme.Forum: Reviews
In reply to: [TT - Subscribe] No Shortcode or Widget – PHP code in theme file requiredThank you for your input I will work on that on version 2.0!
CHEERS! 🙂
Forum: Plugins
In reply to: [TT - Subscribe] WordPress Warning after installationHi, I am sorry about that, I will update the plugin asap (within this week).
If you’re in a hurry, you can fix it on your end: the tt-subscribe.php has MILES of empty lines after your closing PHP tag. That’s why you’re getting the headers already sent errors 🙂
By that: you can delete the EMPTY LINES after the
?>tag.Thank you for using my plugin!