WPsites
Forum Replies Created
-
Can be a pretty straight forward bit of code, Just this second done that very thing on site we’re adding job stats to, so that I can check as an admin/superadmin that the stats are displaying on the other users jobs.
function wpsites_job_dashboard_override_all_users( $args ) { if ( is_super_admin() ) unset( $args['author']); return $args; } add_filter( 'job_manager_get_dashboard_jobs_args', 'wpsites_job_dashboard_override_all_users' );For me there is a pattern, cash on delivery orders get logged in Google Analytics, orders paid by card do not!
A possible clue in the code “Check if is order received page” and only then output ecommerce tracking code. So it’s checking for the “order-received” page, which is fine for cash orders, card orders however go to the ‘order-pay’ page…
Forum: Plugins
In reply to: [Resize images before upload] WP 4.3 : Works only in Posts & Pages, not MediaIt’s funny you should mention this right now.. only 15 minutes ago did I just experience that very issue!.. and was thinking “I’ll post about this on wp org and follow it up as soon as i can”.
One further thing I noticed is that when you add the media it doesn’t look like the media has uploaded but then once you go back into media again you’ll see multiple files that you’ve just being trying to upload! I didn’t noticed if they were in fact resized but they were uploaded..
Forum: Plugins
In reply to: [Resize images before upload] WP 4.3 : Works only in Posts & Pages, not MediaYou sure… I’ve just installed the plugin on a 4.3.1 site and it’s worked without issue on the media admin page, uploaded from a post, uploaded from a page…
Forum: Plugins
In reply to: [WPIDE - File Manager & Code Editor] Wish list (Delete file)Context menu option added to file browser to rename, delete, download, zip, unzip!!
Should be released tomorrow 🙂
Forum: Plugins
In reply to: [WPIDE - File Manager & Code Editor] No Longer SUpportedIt’s a plugin we use each day. If the plugin would have stopped working with any WordPress update we’d have fixed and updated but since it’s kept running without major issue it’s been put to the bottom of the pile.
Will try harder 😉
Forum: Plugins
In reply to: [WPIDE - File Manager & Code Editor] Wish list (Delete file)Hi Kyle,
File delete is definitely way up there in the list of priorities and your hook idea is a good, one which is easy to implement.
Will see what we can do…
Forum: Plugins
In reply to: [WPIDE - File Manager & Code Editor] Its not working with wordpress 4.2Seems to be working in wordPress version 4.3.1 for me… You still having issues?
Forum: Plugins
In reply to: [WPIDE - File Manager & Code Editor] Codemirror touch supportInteresting stuff pingram3541! but unfortunately this plugin doesn’t use codemirror… which is a shame because ace is practically unusable on a mobile device.
In the coming days I’ll spend some time on this plugin and give it a quick update so people don’t think it’s totally dead! (although it has been neglected for a while that’s for sure)
It looks like your plugin just cannot handle variations
Scrap that, it’s still not working. it’s all over the place!
I’ve got 11 products that should be in the feed but instead there are 8. Then if I look at the products in the feed most of them are duplicates!
I’ve managed to work out that I can enter this advanced command:
setAttributeDefault brand as “a default brand”
Which then gives all the products that don’t have a brand entry in the feed a default brand.
Still not sure why the brand isn’t following through to the feed, even though the brand is showing on each individual product page but this workaround makes this plugin install work in this instance (which thankfully is a pretty basic install with not many products).
Forum: Plugins
In reply to: [WP Job Manager] PaginationI’ve got a client that wants to change from the endless scrolling page of “load more jobs” clicks to a more traditional numbered list of pages for a couple of reasons.
1) A single page with additional jobs only visible after a click+ajax could be detrimental to SEO.
2) If someone clicks “load more jobs” for a while then clicks on a job for further inspection, when they then go back to the job page, they start their search all over! There is no easy way to get back to page 10 of the results.
I knocked up a plugin to add a new [jobs_paged] short code last night to turn on paging of the results and turn off the “load more jobs” link but it turns out it’s not quite as straight forward as that because all the filter/search functionality is queried through ajax so I’m going to need to replace all that to have a fully working solution!
Forum: Plugins
In reply to: [WP Job Manager] HTML tags automatically removed from job descriptionI know it’s a wysiwyg editor but they normally accept some basic html. When I check the content posted to the server from the wysiwyg editor I can see the html tags are still in there so the editor isn’t stripping them, something server side must be stripping them.
I didn’t spot that ww.wp.xz.cn stripped my html when I posted this! it was just a few bullet points.
Forum: Plugins
In reply to: [WPIDE - File Manager & Code Editor] WP 3.8 – admin sidebar z-indexThanks pingram3541, I’ll get this updated as soon as I can.