hellomynameislinda
Forum Replies Created
-
Forum: Plugins
In reply to: [Custom Post Type UI] CPT not showing in DashboardWe had the same issue on a client website. We just updated to the latest version with the result that we could no longer get to the posts in the admin. The CPT UI menu was there, and everything front end seems to be working fine, but there was no longer a way to view, add or edit the posts of the post types in admin. Only post types created within the CPT UI tool were missing their admin menu.
For us too, saving the post type under the CPT UI menu without making any changes solved the issue. Which of course, when you figure it out, isn’t that big a deal, though I had to do it on every post type on every site (we’re running a multi site install).
Forum: Plugins
In reply to: [Displet Pop] Visiting at least n pages sitewide does not workAfter even more tries it’s apparent that it doesn’t work properly even with the Twenty Thirteen theme on a clean WP installation, on a different web host – it sometimes seem to work for a bit but after a few tries it doesn’t.
The problem is that the session-variable that increases for each page view doesn’t always increase in in steps of one. It rather acts as if there were page views between my views – only I’m the only one surfing the development site and I’m the only one on the clean WP installation as well.
These rows of the generated script (shown around row 80-90 or so, depending on theme used) shows where it goes wrong.
On first page view:
if ((($.cookie('displetpop_recentpop', {path:'/'}) != 'yes' && '1' >= '3') || ('' == '1' && '' == '1')) && urlmatch != 'no'){
On second page view:
if ((($.cookie('displetpop_recentpop', {path:'/'}) != 'yes' && '3' >= '3') || ('' == '1' && '' == '1')) && urlmatch != 'no'){
On third page view:
if ((($.cookie('displetpop_recentpop', {path:'/'}) != 'yes' && '4' >= '3') || ('' == '1' && '' == '1')) && urlmatch != 'no'){
See the ‘1’ >= ‘3’, ‘3’ >= ‘3’ & ‘4’ >= ‘3’?
Sometimes the numbers are 1, 2, 4 instead and rarely it works properly as 1, 2, 3.Since this has happened on two completely separate servers (different web hosts) as well as with both with our custom theme and the default theme, with and without the other plugins we use, it seems like it should happen to other people as well.
Forum: Plugins
In reply to: [Displet Pop] Visiting at least n pages sitewide does not workI have now tried the plugin on few other WP installations and it works fine with the default themes. Still it does not work properly for me, so it’s obviously a problem with my theme or setup. I’ve tried inactivating all other plugins and some scripts that could possibly be the cause of conflicts, but still no result.
Do you have any ideas what this could be related to? Have you run into any conflicts during development that I could start looking for?
Thanks again.