brandyqk
Forum Replies Created
-
Hi, I turned it on, but it’s still showing the wrong post.
Screenshot example:
https://calicomarketing.com/wp-content/uploads/2023/01/Example-scaled.jpg
Link:
https://knippwolf-netlease.com/retail-sales-research-brief-december-2022-2/
Forum: Plugins
In reply to: [Code Embed] GoDaddy IssuesIt is the main content. “Code Block” is where you place HTML.
Still shows %CODEMAP%
https://www.veritarealestate.com/contact-us/Forum: Plugins
In reply to: [Code Embed] GoDaddy IssuesThat brought it up! But it’s still showing %CODEMAP% on the page.
My custom field filled out on the Contact Page:
My code block:
Still shows as text on website: https://www.veritarealestate.com/contact-us/
Forum: Plugins
In reply to: [Code Embed] GoDaddy IssuesHere’s a screenshot of the Page editor:
Forum: Plugins
In reply to: [Code Embed] GoDaddy IssuesUnfortunately, when using Avada, the only place you can add a custom field is the portfolio. The meta box does not show up anywhere else.
Forum: Plugins
In reply to: [Smooth Slider] Updated slider and now it's not workingOh, gosh, now its suddenly working! It was probably my browser’s cookies or something.
Forum: Plugins
In reply to: [Really Simple CAPTCHA] SSL – HTTPS Compatible?Nope, I never found a way around it. I had to create another side bar widget with a non-captcha contact form so the pages would show as secure.
Forum: Fixing WordPress
In reply to: WP 3.6 – Affects my button shortcode & lightboxSolved for my issue:
My issued was WordPress 3.6 didn’t like the shortcode’s tag lightbox=”false” or lightbox=”true”. Once I removed it, the button worked again without errors.
Not Working Button:
[button link="https://www.google.com" size="medium" target="_blank" color="green" lightbox="false"]You Button Text[/button]
Working Button:
[button link="https://www.google.com" size="medium" target="_blank" color="green"]You Button Text[/button]
Forum: Fixing WordPress
In reply to: WP 3.6 – Affects my button shortcode & lightboxThe button shortcode came with the template.
It works with PrettyPhoto.
Shortcode.php
function energy_buttons( $atts, $content = null ) { extract(shortcode_atts(array( 'link' => '#', 'size' => 'medium', 'target' => '_self', 'lightbox' => false, 'color' => 'white', 'icon' => '', 'style' => '' ), $atts)); if($lightbox == true) { $return = "prettyPhoto "; } else{ $return = " "; } if($icon == '') { $return2 = ""; } else{ $return2 = "<i class='icon-".$icon."'></i>"; } $out = "<a href=\"" .$link. "\" target=\"" .$target. "\" class=\"".$return."button ".$color." ".$size." ".$style."\" rel=\"slides[buttonlightbox]\">". $return2 . "". do_shortcode($content). "</a>"; return $out; }
Forum: Fixing WordPress
In reply to: WP 3.6 – Affects my button shortcode & lightboxVersion of WordPress: 3.6
Theme: Energy
Recently Installed Plugins: None
Customized something recently: No
Direct Link to Page with Issue: https://membervalue.calicomarketing.com/define/Details about testing cause
1) Button on client’s server worked fine (no errors) until they updated to WordPress 3.6.
2) To test the cause of the issue I opened the test server. At the time I had not yet updated any plugins or WordPress version for 2 months.
– 1st, I updated the plugins. Button worked fine.
– 2nd, I updated to WordPress 3.6. Button stopped working.I concluded it was likely the WordPress 3.6 update. I was wondering if anyone had a fix for this issue.
Forum: Fixing WordPress
In reply to: Problems after wordpress 3.6 installationSame issue.
Button shortcode worked until I updated to WordPress 3.6. Now it’s giving me “Image cannot be loaded. Make sure the path is correct and image exist.”