John Brand
Forum Replies Created
-
Forum: Plugins
In reply to: [Post State Tags] Warning For Deprecated FunctionHi. I forgot to post a reply here, but the version 2.0.3 contained a fix removing the anonymous function (deprecated).
Forum: Plugins
In reply to: [Post State Tags] Warning For Deprecated FunctionI’m not getting this error. You must be using a much newer version of PHP or some plugin that is generating this error. The error is also generated by a 3rd party api library. I’ll see if I can find the error and fixing it.
PS. you can change your default PHP error/warning/notice logging in your PHP.ini file so it doesn’t generate these.
Ive found that the migration function was migrating the wrong key value for the “install” and version settings.
You can just delete the plugin and reinstall it and then reset the settings. The plugin should enable correctly.
Sorry if te new version caused you any hassles. I’ve been working hard to make the new version look and work much better.
I’ve tested this now and it seems to work fine. Let me know.
The plugin was completely rewritten into a class. The might be some issues transferring the old setting to the new settings.
Things you can try
- reset the plugin color and icon settings?
- Check if it’s enabled under the advanved tab?
Forum: Reviews
In reply to: [Post State Tags] Fantastic plugin for a better viewThanks Jose. Such kind words.
Forum: Plugins
In reply to: [Titan Framework] Titan on WordPress 4.7remember that “my-theme” string MUST match our theme’s Text Domain (in style.css).
Forum: Plugins
In reply to: [Titan Framework] createCSS doesn’t do anythingI realised my mistake. It works but ONLY when you save options (which you have to do during development to “render” the CSS file continuously.
Also, another thing to remember is that for options like FONT, you have to render every variable, e.g.
font-family: $headings_font-font-family;
You can’t use the variable alone, like when you set the css variable with “value” string.
Forum: Plugins
In reply to: [Post State Tags] Suggestion: Admin menu notificationsNot sure that actually makes sense, since you can have an infinite number of statuses for a post. So how could you possibly add multiple “circles” onto the admin menu for all the various types of statuses?
The “summary” part is also not the intention of this plugin, it was specifically designed for the Listing screen only.
I know there is a Plugin that adds these “summary” items to the “At A Glance” Dashboard area (on the login landing page).
Note: The above plugin supports custom post states and supports icons defined by the Post State Tags plugin.
Forum: Plugins
In reply to: [Post State Tags] bug in admin_urlThanks for the suggestion. I’ll add it to the latest version.
Forum: Plugins
In reply to: [Post State Tags] Suggestion – Custom StateHi.
Thanks for the message and that you like the plugin.
However, this plugin is only there to modify the colours of existing post statuses, not to create new ones. For Example if a developer adds a new status (e.g. Archived Post Status Plugin), then this plugin will show it on it’s settings menu and you can change colours and icons.
Forum: Plugins
In reply to: [Tailor Page Builder] Duplicate ContentThere’s a video hidden away, which also shows that you can add a Tab, List item or new grid item by dragging a new child item into the center of the “multiple” element – you’ll know it will add a new element if there appears a plus icon in the middle of the “block” while it lightens the block slightly.
- This reply was modified 8 years, 5 months ago by John Brand.
Forum: Plugins
In reply to: [Tailor Page Builder] Great directionChallenges yep! Maybe once the Fields API is integrated into WP.
Forum: Plugins
In reply to: [Event Organiser] Future Events no longer shownIf I didn’t specify that in front, the event posts are actually wrong – only certain past events and also both the calendar widget and the upcoming events widget don’t display anything, e.g. it says “no events found” in the upcoming and the calendar also only shows the matching wrong events in the system.
Forum: Plugins
In reply to: [Event Organiser] Future Events no longer shownActually, I corrected the issue in the meantime. I am using several queries on the same page (main event list + sidebar calendar + upcoming shortcode), it failed, so I had to modify the archive-event.php file (custom child theme version) to force it to use the global $wp_query variable, e.g.
global $wp_query; if ( $wp_query->have_posts() ) { while ( $wp_query->have_posts() ) : $wp_query->the_post(); } wp_reset_postdata(); }
if I didn’t include the global in front (force context), then it would fail and only show certain events.
Forum: Plugins
In reply to: [Event Organiser] Future Events no longer shownI’ve checked and it displays the FUTURE events when the administrator is logged in, but when you logout, then the Future events are not displayed. Maybe there is some new setting in Events Organiser, or perhaps the settings have changed for visibility of events, or maybe it’s a new user role thing?
Any Ideas?