Title: Joe's Replies | WordPress.org

---

# Joe

  [  ](https://wordpress.org/support/users/joemc/)

 *   [Profile](https://wordpress.org/support/users/joemc/)
 *   [Topics Started](https://wordpress.org/support/users/joemc/topics/)
 *   [Replies Created](https://wordpress.org/support/users/joemc/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/joemc/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/joemc/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/joemc/engagements/)
 *   [Favorites](https://wordpress.org/support/users/joemc/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 100 total)

1 [2](https://wordpress.org/support/users/joemc/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/joemc/replies/page/3/?output_format=md) …
[5](https://wordpress.org/support/users/joemc/replies/page/5/?output_format=md) 
[6](https://wordpress.org/support/users/joemc/replies/page/6/?output_format=md) 
[7](https://wordpress.org/support/users/joemc/replies/page/7/?output_format=md) 
[→](https://wordpress.org/support/users/joemc/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ditty – Responsive News Tickers, Sliders, and Lists] Ditty ticker disappeared from top of header area](https://wordpress.org/support/topic/ditty-ticker-disappeared-from-top-of-header-area/)
 *  Plugin Support [Joe](https://wordpress.org/support/users/joemc/)
 * (@joemc)
 * [1 month, 2 weeks ago](https://wordpress.org/support/topic/ditty-ticker-disappeared-from-top-of-header-area/#post-18949155)
 * > [View post on imgur.com](https://imgur.com/a/LHtqZ0F)
 * 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:
 *     ```wp-block-code
       .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.
 *     ```wp-block-code
       .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:
 *     ```wp-block-code
       #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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ditty – Responsive News Tickers, Sliders, and Lists] Ditty ticker disappeared from top of header area](https://wordpress.org/support/topic/ditty-ticker-disappeared-from-top-of-header-area/)
 *  Plugin Support [Joe](https://wordpress.org/support/users/joemc/)
 * (@joemc)
 * [1 month, 2 weeks ago](https://wordpress.org/support/topic/ditty-ticker-disappeared-from-top-of-header-area/#post-18945554)
 * 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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Duplicator] Post duplication not working for Wp Customer area’s private posts](https://wordpress.org/support/topic/post-duplication-not-working-for-wp-customer-areaq-private-posts/)
 *  Plugin Support [Joe](https://wordpress.org/support/users/joemc/)
 * (@joemc)
 * [4 months, 2 weeks ago](https://wordpress.org/support/topic/post-duplication-not-working-for-wp-customer-areaq-private-posts/#post-18859867)
 * Good to hear! Thanks for the confirmation.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Duplicator] Post duplication not working for Wp Customer area’s private posts](https://wordpress.org/support/topic/post-duplication-not-working-for-wp-customer-areaq-private-posts/)
 *  Plugin Support [Joe](https://wordpress.org/support/users/joemc/)
 * (@joemc)
 * [4 months, 3 weeks ago](https://wordpress.org/support/topic/post-duplication-not-working-for-wp-customer-areaq-private-posts/#post-18858490)
 * I just released an update (v3.0.13) that should resolve this issue. Please test
   it out when you get a chance.
 * Thanks!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ditty – Responsive News Tickers, Sliders, and Lists] Items overlapping on initial view with ticker](https://wordpress.org/support/topic/items-overlapping-on-initial-view/)
 *  Plugin Support [Joe](https://wordpress.org/support/users/joemc/)
 * (@joemc)
 * [4 months, 3 weeks ago](https://wordpress.org/support/topic/items-overlapping-on-initial-view/#post-18858418)
 * Sounds good, thanks for the update.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ditty – Responsive News Tickers, Sliders, and Lists] Items overlapping on initial view with ticker](https://wordpress.org/support/topic/items-overlapping-on-initial-view/)
 *  Plugin Support [Joe](https://wordpress.org/support/users/joemc/)
 * (@joemc)
 * [4 months, 4 weeks ago](https://wordpress.org/support/topic/items-overlapping-on-initial-view/#post-18851723)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Duplicator] Duplicate divi library layouts](https://wordpress.org/support/topic/duplicate-divi-library-layouts/)
 *  Plugin Support [Joe](https://wordpress.org/support/users/joemc/)
 * (@joemc)
 * [5 months, 1 week ago](https://wordpress.org/support/topic/duplicate-divi-library-layouts/#post-18837302)
 * [@lanckwi](https://wordpress.org/support/users/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](https://wordpress.org/support/plugin/post-duplicator/reviews/#new-post)
 * Thank you!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Duplicator] Duplicate divi library layouts](https://wordpress.org/support/topic/duplicate-divi-library-layouts/)
 *  Plugin Support [Joe](https://wordpress.org/support/users/joemc/)
 * (@joemc)
 * [5 months, 1 week ago](https://wordpress.org/support/topic/duplicate-divi-library-layouts/#post-18837105)
 * Thanks 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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ditty – Responsive News Tickers, Sliders, and Lists] Super Page Cache plugin disables Ditty ticker](https://wordpress.org/support/topic/super-page-cache-plugin-disables-ditty-ticker/)
 *  Plugin Support [Joe](https://wordpress.org/support/users/joemc/)
 * (@joemc)
 * [5 months, 3 weeks ago](https://wordpress.org/support/topic/super-page-cache-plugin-disables-ditty-ticker/#post-18825724)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Duplicator] Plugin rearranges posts (v3.0.7)](https://wordpress.org/support/topic/plugin-rearranges-posts/)
 *  Plugin Support [Joe](https://wordpress.org/support/users/joemc/)
 * (@joemc)
 * [5 months, 3 weeks ago](https://wordpress.org/support/topic/plugin-rearranges-posts/#post-18825705)
 * 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Duplicator] Plugin rearranges posts (v3.0.7)](https://wordpress.org/support/topic/plugin-rearranges-posts/)
 *  Plugin Support [Joe](https://wordpress.org/support/users/joemc/)
 * (@joemc)
 * [5 months, 3 weeks ago](https://wordpress.org/support/topic/plugin-rearranges-posts/#post-18825068)
 * [@nicksinclair](https://wordpress.org/support/users/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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Duplicator] Does not work with Nested Pages plugin](https://wordpress.org/support/topic/does-not-work-with-nested-pages-plugin/)
 *  Plugin Support [Joe](https://wordpress.org/support/users/joemc/)
 * (@joemc)
 * [5 months, 3 weeks ago](https://wordpress.org/support/topic/does-not-work-with-nested-pages-plugin/#post-18825067)
 * [@surlybirdz](https://wordpress.org/support/users/surlybirdz/) I just released
   an update that should resolve this issue with Nested Pages.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Duplicator] Does not work with Nested Pages plugin](https://wordpress.org/support/topic/does-not-work-with-nested-pages-plugin/)
 *  Plugin Support [Joe](https://wordpress.org/support/users/joemc/)
 * (@joemc)
 * [5 months, 4 weeks ago](https://wordpress.org/support/topic/does-not-work-with-nested-pages-plugin/#post-18821563)
 * [@surlybirdz](https://wordpress.org/support/users/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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Duplicator] Plugin rearranges posts (v3.0.7)](https://wordpress.org/support/topic/plugin-rearranges-posts/)
 *  Plugin Support [Joe](https://wordpress.org/support/users/joemc/)
 * (@joemc)
 * [5 months, 4 weeks ago](https://wordpress.org/support/topic/plugin-rearranges-posts/#post-18821522)
 * [@nicksinclair](https://wordpress.org/support/users/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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Post Duplicator] Does not work with Nested Pages plugin](https://wordpress.org/support/topic/does-not-work-with-nested-pages-plugin/)
 *  Plugin Support [Joe](https://wordpress.org/support/users/joemc/)
 * (@joemc)
 * [6 months ago](https://wordpress.org/support/topic/does-not-work-with-nested-pages-plugin/#post-18813971)
 * Good 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.

Viewing 15 replies - 1 through 15 (of 100 total)

1 [2](https://wordpress.org/support/users/joemc/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/joemc/replies/page/3/?output_format=md) …
[5](https://wordpress.org/support/users/joemc/replies/page/5/?output_format=md) 
[6](https://wordpress.org/support/users/joemc/replies/page/6/?output_format=md) 
[7](https://wordpress.org/support/users/joemc/replies/page/7/?output_format=md) 
[→](https://wordpress.org/support/users/joemc/replies/page/2/?output_format=md)