Goran Petrovic
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [The Chameleon] SSL errorHi,
That error is because your localhost installation is not under SSL.
You can read theme documentation on https://chameleon-theme.com/docs/
- This reply was modified 6 years, 12 months ago by Goran Petrovic.
Also I need to save options from customize in post meta.
I can filter on save_customize get the filed and update post meta. But do you have some other suggestion?
I try to create page options in customize by Page template. So if I have 2 pages whit same page template I need different options name in customize. I need to set page_34_background, page_40_background… etc…
Forum: Plugins
In reply to: [Visual Form Builder] TranslationThanks.
Forum: Plugins
In reply to: [WP Store Locator] Map don't showThanks, I fixed.
Best regards
Forum: Plugins
In reply to: [WP Store Locator] Map don't showThis is https://tworld.dev.executive-digital.com/office-locations/
[Please do not bump]
Forum: Plugins
In reply to: [WP Store Locator] Map don't showWhen I switch default theme map work.
I use bootstrap in theme, maybe that make bug?
Forum: Themes and Templates
In reply to: [The Chameleon] What is this?Also you can watch tutorials on our site https://www.chameleonthemes.net/category/tutorials/
Forum: Themes and Templates
In reply to: [The Chameleon] What is this?Are you check readme.txt file? maybe documentation is in that file.
New skins coming soon.
Forum: Plugins
In reply to: [Visual Form Builder] [Plugin: Visual Form Builder] define('WP_DEBUG', TRUE);just define variables
$variable = (!empty($value)) $value ? : NULL ;Forum: Plugins
In reply to: [Visual Form Builder] [Plugin: Visual Form Builder] define('WP_DEBUG', TRUE);But i must to say this is a best form builder plugin ?? for me.
And if you can add on select box some list of values like countries list or somting simple…
Forum: Plugins
In reply to: [Visual Form Builder] [Plugin: Visual Form Builder] define('WP_DEBUG', TRUE);just try work on site when is DEBUG == TRUE,
don’t work redirect
don’t work message after submit, don’t work form bulder.. etc…
?? that is a 10h work to fix that …Best regards
Forum: Fixing WordPress
In reply to: Dynamic the_excerpt/* THE_EXCERT */ function the_excerpt_dynamic($length) { // Outputs an excerpt of variable length (in characters) global $post; $text = $post->post_exerpt; if ( '' == $text ) { $text = get_the_content(''); $text = apply_filters('the_content', $text); $text = str_replace(']]>', ']]>', $text); } $text = strip_shortcodes( $text ); // optional, recommended $text = strip_tags($text); // use ' $text = strip_tags($text,'<p><a>'); ' to keep some formats; optional $output = strlen($text); if($output <= $length ) { $text = substr($text,0,$length).' <div class="read_more"><a href="'. get_permalink($post->ID) . '" class="read_more_link" > Read More</a></div>'; }else { $text = substr($text,0,$length).' [...]<div class="read_more"><a href="'. get_permalink($post->ID) . '" class="read_more_link" > Read More</a></div>'; } echo apply_filters('the_excerpt',$text); }
returns “[…]” if the text is longer or just text if not…