dcbuffalo
Forum Replies Created
-
Forum: Plugins
In reply to: [Bold Page Builder] Bold Builder injecting extra codeThanks for reaching back out. I did some further plugin testing, and this time, the extra code injection is isolated to portfolio posts (generated via the RadiusTheme plugin). However, the weird “data-content” field is still filled with the complete underlying content, even when all of the other plugins are turned off. It doesn’t happen on any other Kadence / Bold Builder site that I work on.
I’ll set you up with site admin credentials and FTP access shortly.
Forum: Plugins
In reply to: [Bold Page Builder] Bold Builder injecting extra codeFor now, I’ve discovered that I can write CSS for “p:empty” so I’ve done some workarounds. I’m still hoping for help on debugging what’s going on, because it is very weird and will likely cause other problems later. If nothing else, duplicating all of the content code into that “data-content” value doubles that content size of every page.
Forum: Plugins
In reply to: [Bold Page Builder] Bold Builder injecting extra codeAny idea on timing for a reply? This is time sensitive, I have some big deadlines coming up. THANK YOU!
Forum: Plugins
In reply to: [Bold Page Builder] Bold Builder injecting extra codeThe main link I supplied is to a portfolio post, which is using Portfolio plugin by RadiusTheme, but this is happening on normal pages too – everywhere that uses Bold Builder.
Forum: Plugins
In reply to: [Bold Page Builder] Accordions do not open anymoreI just used “Check Conflicts” to try to get it to work, and it doesn’t – switched themes, turned everything off, doesn’t work. I had turned off any custom CSS I had on these accordion elements, and it still didn’t work.
I was able to identify that for some reason, the class “on” is not getting added to the .bt_bb_accordion_item when you click on it. Is this a Bold Builder version issue? I doubt it, because I have another site also at v5.0.4, and the accordions work. See the very bottom of the homepage on this development site.
https://2024.saratogaeagle.com
- This reply was modified 1 year, 12 months ago by dcbuffalo.
I finally figured out what is going on. ANY separator (“|” or “-“) that is used within the “og:title” is causing issues, whether they are generated inline or using snippets. Once I removed them from everywhere – site title, Facebook OG and Twitter OG – everything worked perfectly. Parentheses even work fine.
I will be recoding ALL OG data on ALL of my sites now. Even if this gets fixed, I won’t take a chance anymore.
- This reply was modified 3 years, 2 months ago by dcbuffalo.
I put in a ticket with Webkit. We’ll see what that brings up.
I think I now understand what may be happening.
We discovered that Androids and PCs (not just Apple devices) are having the same problem, but displaying even different metadata than iPhones and Macs.
From what I have gathered from numerous support chats and articles, text/SMS message programs and email client programs are supposed to grab “og:title” and “og:image” from the code. The problem I’m seeing now is that the Yoast plugin is no longer generating that specific code. I also tested this with the All-In-One SEO plugin, and the same thing happened. I found some plugins that claim to automatically generate the og: code, but it is impossible to control or configure.
This is all a very new problem for us. I’m wondering if Yoast somehow stopped supporting that, or if this is functionality that has moved to the premium plugin. I would gladly get the premium plugin if it solved this specific problem.
Forum: Plugins
In reply to: [Age Gate] Age Gate Logo Not AppearingThat code didn’t work (nothing happened), but thank you for pointing out the cause. I’m going to advocate on behalf of turning that plugin off – I have trained the client to pre-compress images anyway, so I doubt it is doing much of anything.
Forum: Plugins
In reply to: [Age Gate] Age Gate Logo Not AppearingI looked on another site that we use this for (saratogaeagle.com) and it’s definitely just overriding the src=”” URL and adding a “data:image” code.
Forum: Plugins
In reply to: [Age Gate] Age Gate Logo Not AppearingI also tried a .jpg file, that doesn’t show up either.
Forum: Plugins
In reply to: [SpeakOut! Email Petitions] HTML removed from Petition MessageHA! I only found it because I had to update the text. The campaign went well, but the political chains stopped moving. We sent LOTS of emails, though, so thank you for this plugin!
Forum: Plugins
In reply to: [SpeakOut! Email Petitions] HTML removed from Petition MessageHere’s a screenshot of what I’m referring to: https://snipboard.io/1uEclV.jpg
This is STILL happening. Had to do a restore of the site because your plugin update broke the site.
PLEASE FIX THIS ISSUE. I can’t believe I’m still asking.
So FYI – I re-did your steps from above, and it works again:
STEP 1:
Go to Plugins > Plugin editor and select Responsive Accordion and Collapse plugin and go to front > style.php on line number 151 replace the below code with another code.<?php echo esc_attr($custom_css); ?>
to
<?php echo $custom_css; ?>STEP 2
Go to plugins > plugin editor and select Responsive Accordion and go to lib folder > admin
> data-post > ac-settings-save-data.php file on line number 23 and replace the below code with the new code.$custom_css = sanitize_textarea_field($_POST[‘custom_css’]);
to
$custom_css = stripslashes($_POST[‘custom_css’]);Still trying to understand why you don’t just include this in the update.