
Resolved Captcha Not Loading In Blog Posts Comments
By
sapcmc, in DMS & Legacy Products
-
Similar Content
-
By globalnative+
Hi there!
I'm trying to create a featured image for my new blog post. It has text in it, and when I add it as a featured image some of the text is cut off on the right.
Could I get the ideal dimensions for featured images? Or, a way to customise the dimensions so that they are easier to fit in the way I need?
Thank you kindly
Nate
-
By bartok+
Masonic gallery sorting feature does not work in portrait mode on iPhone. After selecting an individual category and then scrolling down the page, every box reappears. Test it out for yourself: http://themes.pagelines.com/dms/portfolio-fullwidth-masonry/. What is the fix for this?
-
By abuzzelli+
Hi, I would like to know how to change my featured image on the post page to be the medium size instead of the thumbnail. I would like the thumbnail size to stay at 150x150px on the blog list view, but on the actual post page I want it to show 300x300px. Having trouble with this. Thanks!
http://brkichdesigngroup.com/fitwithmai/recipes/peanut-butter-oatmeal/
-
By bartok+
I just upgraded my site (http://www.dannysvenice.com) to 1.1.9 from 1.1.8 and now I get the following error:
Fatal error: Call to undefined function pl_add_theme_tab() in /home/dannprgd/public_html/wp-content/themes/dannys-child-theme/functions.php on line 82
Here is the text from the functions.php file (I have placed line 82 in bold):
-----------------------------
<?php
// Load Framework - don't delete this require_once( dirname(__FILE__) . '/setup.php' ); // Load our shit in a class cause we're awesome class YourTheme { function __construct() { // Constants $this->url = sprintf('%s', PL_CHILD_URL); $this->dir = sprintf('/%s', PL_CHILD_DIR); // Add a filter so we can build a few custom LESS vars add_filter( 'pless_vars', array(&$this,'custom_less_vars')); $this->init(); } function init(){ // Run the theme options $this->theme_options(); // Send the user to the Theme Config panel after they activate. add_filter('pl_activate_url', array(&$this,'activation_url')); } // Send the user to the Theme Config panel after they activate. Note how link=nb_theme_config is the same name of the array settings. This must match. function activation_url( $url ){ $url = home_url() . '?tablink=theme&tabsublink=nb_theme_config'; return $url; } // Custom LESS Vars function custom_less_vars($less){ // Adding a custom LESS var, use this in LESS as @my-var. In this example, its linked to a custom color picker in options. We also must set a default or else it's going to error. // pl_hashify must be used with color pickers so that it appends the # symbol to the hex code // pl_setting is being used because this is a global option used in the theme $less['my-var'] = pl_setting('my_custom_color') ? pl_hashify(pl_setting('my_custom_color')) : '#07C'; return $less; } // WELCOME MESSAGE - HTML content for the welcome/intro option field function welcome(){ ob_start(); ?><div style="font-size:12px;line-height:14px;color:#444;"><p><?php _e('You can have some custom text here.','nicks-base-theme');?></p></div><?php return ob_get_clean(); } // Theme Options function theme_options(){ $options = array(); $options['nb_theme_config'] = array( 'pos' => 50, 'name' => __('Nicks Base Theme','nicks-base-theme'), 'icon' => 'icon-rocket', 'opts' => array( array( 'type' => 'template', 'title' => __('Welcome to My Theme','nicks-base-theme'), 'template' => $this->welcome() ), array( 'type' => 'color', 'title' => __('Sample Color','nicks-base-theme'), 'key' => 'my_custom_color', 'label' => __('Sample Color','nicks-base-theme'), 'default' =>'#FFFFFF' ), ) ); pl_add_theme_tab($options); } } new YourTheme; -----------------------------
What do I need to do to get my site back up and working again? HELP!!!!
-
By erinfults
I'm trying to figure out how to remove the post date from blog posts on a site and only have the post author, comments link and category in the post meta.
Right now within the WP Content/Loop the Metabar configuration has: "[post_author_link] • [post_comments] • [post_categories]" but the date is still showing and appears to be tied into the [post_author_link] tag. How do I remove the date?
http://blog.danesanders.com
-