Joe
Forum Replies Created
-
The issue is stemming from the grid display of the container where the ticker is placed. The row within the customify-grid has the following css:
.row-v2.no-center {
grid-template-columns: auto auto auto;
}The column that contains the ticker is set to auto width, but the ticker itself doesn’t create a width, it relies on the dimensions of the container is put in to fill that space. But, in this scenario there is no width for the container so the ticker also has 0 width.
Somehow this css needs to change to set the column to 1fr, which stretches the column to fill the space, and then the ticker will also fill that space.
.row-v2.no-center {
grid-template-columns: 1fr auto auto;
}You probably don’t want to globally change this css, but if you can add a custom class or id to the element in your builder, or however page is built, you can target this section specifically do it doesn’t affect other areas on your site. Something like:
#ticker-section .row-v2.no-center {
grid-template-columns: 1fr auto auto;
}Or, there may be a way to adjust the column within your builder to ensure the container of the ticker stretches on it’s own.
I’m seeing Page Not Found when going to the link you provided, but I checked out the source code of your header looked the develop tools on your home page.
It looks like you have a couple javascript errors that are stopping the ticker from running and one of the js errors seems to come from the cache plugin on your site. Try disabling your cache plugin briefly and see if the ticker shows back up. If it does, re-enable the cache plugin and disable any script combining or minification settings of the cache plugin. Many times the these features can cause issues.
Let me know what you find out.
Good to hear! Thanks for the confirmation.
I just released an update (v3.0.13) that should resolve this issue. Please test it out when you get a chance.
Thanks!
Sounds good, thanks for the update.
Thanks for reaching out. Can you provide a link to your site so I can check it out? If you have images within your ticker you need to make sure you define the widths of the images with inline styles to ensure the Ditty can accurately calculate widths of the items.
Forum: Plugins
In reply to: [Post Duplicator] Duplicate divi library layouts@lanckwi thanks for letting me know! If you have a few seconds and could leave a review for Post Duplicator I would greatly appreciate it! https://wordpress.org/support/plugin/post-duplicator/reviews/#new-post
Thank you!
Forum: Plugins
In reply to: [Post Duplicator] Duplicate divi library layoutsThanks for letting me know about this. I just released an update (v3.0.10) that should resolve this issue. Let me know if you have any questions after updating.
It’s hard to say what may be happening, but please check to see if the Super Page Cache plugin is combining and/or compressing javascript files. This is usually the source of issues when using any sort of page optimization plugins. General cacheing is usually never the source of issues (although, please clear your cache to make sure).
Forum: Plugins
In reply to: [Post Duplicator] Plugin rearranges posts (v3.0.7)Thanks for confirming that it’s working!
I understand your desire for the menu_order increment, but after looking into how SCPO works, any conflicting menu_order index causes the initial issue you were seeing. So, the best way to ensure existing menu_order indexes aren’t modified was to set the cloned post index to the highest index + 1.
Forum: Plugins
In reply to: [Post Duplicator] Plugin rearranges posts (v3.0.7)@nicksinclair I believe I have this issue resolved with the latest update I released today. Please check it out when you get a chance and let me know if you still have any issues.
Forum: Plugins
In reply to: [Post Duplicator] Does not work with Nested Pages plugin@surlybirdz I just released an update that should resolve this issue with Nested Pages.
Forum: Plugins
In reply to: [Post Duplicator] Does not work with Nested Pages plugin@surlybirdz thanks for the further information! I believe I have a solution for this locally and will release an update in the next few days.
Forum: Plugins
In reply to: [Post Duplicator] Plugin rearranges posts (v3.0.7)@nicksinclair thanks for the further explanation and description. I have installed SPCO locally, ran some tests and believe I have found the reason this is happening. I’ll be releasing an update in the next few days that should resolve the issue, specific to SPCO.
Forum: Plugins
In reply to: [Post Duplicator] Does not work with Nested Pages pluginGood to hear! And thanks for letting me know about the View Post issue. WordPress should be redirecting ?p=1234 to the actual front end url, but there are certain situations were it may not:
- Broken .htaccess: Your server configuration file might be missing the standard WordPress rewrite rules.
- Plugin Conflicts: Some “Redirection” or “SEO” plugins can occasionally interfere with the default canonical behavior if misconfigured.
- Caching: Sometimes heavy server-side caching (like Varnish or Nginx FastCGI cache) can serve the plain link without triggering the PHP redirect logic.
In any case, I just released an update (v3.0.8) that sets the View Post to url the fully rendered permalink url instead of relying on the WordPress redirect. This should resolve this issue for you.