daveh0
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] allow for a URL to be used for social imageThanks for the response. I do have developer experience and have looked through the portal, however I’m having trouble finding anything referencing customizing the plugin UI. Any chance you can point me iin the right direction with respect to finding that documentation?
I’m actually trying to create the multi-step part on my own (with the free version of the plugin) using a javascript slider to show the different steps…
- This reply was modified 2 years, 5 months ago by daveh0.
ok so you need the pro version, gotcha. Can you also tell me if the Pro version is required to embed the Tracking Widget into emails customized by Email Template Customizer? Both say they’re compatible with each other, however once I started using that plugin to customize my emails, the widget no longer appears.
ok I found the template at wp-content/plugins/elementor/modules/page-templates/templates/canvas.php. Is there a way to create a version of this file in my child theme and customize it? OR is there a hook that can be used to modify the
<body>
like in the OP?- This reply was modified 4 years, 6 months ago by daveh0.
Forum: Plugins
In reply to: [Magic Embeds] Error: (#10) being displayed where FB album once wasUPDATE:
I’ve gone into the FB Apps settings, created a test app, created a test user and changed the API info in the plugin’s settings. When logged in to FB as the test user, I no longer get the error message, but the album is not displayed. Instead, just the url of the album (which is passes to the shortcode) is displayed.I can see that a call is being made to the API every time I load the page. I can’t tell what data is being returned, if any, but i’m not sure why the result of the shortcode being executed, regardless of what data is returned by the FB API call, is to display the URL of the album passed to it.
Again, any guidance here would be greatly appreciated.
not sure how/why this got marked as “resolved”, but the answer provided by the plugin contributor does NOT work.
Thanks for the response, but that doesn’t work. When the plugin is initialized, the last thing it does (before handling any user interaction) is animates the opacity of the tab from 0 to 1 with the line:
jQuery('a#wpcs_handle').fadeTo("slow", 1);
The resulting markup for the tab is rendered as:
<a id="wpcs_handle" class="wpcs_handle wpcs_contact_label wpcs_right" style="width: 35px; height: 36px; display: inline outline: medium none; position: absolute; z-index: 999999999; top: 0px; right: 386px; opacity: 1;">Contact Us</a>
As you can see, jQuery adds a bunch of inline styles to that element overriding anything defined in a stylesheet (such as the class suggested in the previous post).
Any other suggestions? It would be great to see an upgrade where you can choose to display the tab OR choose to hide the tab and be able to specify another button/link on the page to trigger the slide. Currently I am doing the last part by manuallying firing the click event on the tab i my ready() script.
- This reply was modified 7 years, 10 months ago by daveh0.
I came up with a solution for now. In wpcs_frontend_functions.php, I commented out the line (and it’s setTimeout wrapper):
jQuery('a#wpcs_handle').fadeTo("slow", 1);
This prevents the tab from from fading in when the page loads and the plugin initializes. I’m not sure if there’s a way to achieve this without editing plugin source code, but that would be ideal. If anyone is aware of a better way, please do share.
Thanks!!