Archived
This topic is now archived and is closed to further replies.

Recommended Posts
-
Similar Content
-
By Moti+
Help! When I use the following code from mailchimp pop up form in plattform 5 the "x" button to remove the pop up form is not working. What can I do?
<script type="text/javascript" src="//downloads.mailchimp.com/js/signup-forms/popup/unique-methods/embed.js" data-dojo-config="usePlainJson: true, isDebug: false"></script><script type="text/javascript">window.dojoRequire(["mojo/signup-forms/Loader"], function(L) { L.start({"baseUrl":"mc.us4.list-manage.com","uuid":"3d0148c559e497e53905c6907","lid":"f0cfc283fc","uniqueMethods":true}) })</script>
-
By Thijs+
Hi,
somehow my post navigation won't show up beneath a post.
Link to the website (Platform 5)
Also with all plugins deactivated nothing shows up.
I'd also like to make the post navigation visible on custom post types.
What should I do:
Continue to look for a CSS error? Or make a new section with a post navigation? ... ? Somebody give me hint please?
Kind regards,
Thijs
-
By lroberts00
Could someone help me fix the classic nav when viewing on mobile devices? The page tile covers the nav.
http://sunsetcandleco.thecreativeplace.org/product-category/sunset/page/2/
Also, any help with making the "add to cart" button smaller on mobile devices would be helpful too.
Thanks!
-
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 pazyluz+
Hi, I will need a lot of support in the next week. I am using the Details theme. What can I do to raise my level of support and response time to questions. I'm remembering the days of the pagelines chat. What's the closest I can get to that and how? Thank you
-