debain
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Invoice - Web Invoice and Billing] Conflict with Post StatusHi
What/Why? Recommendation?
Maybe i should not use wp-invoice (Only 5000 installations and bad rating). If you don’t have a soulution, no problem, i am going to search another plugin/tool.Regards
Forum: Plugins
In reply to: [WP-Invoice - Web Invoice and Billing] Conflict with Post StatusHi
Ok, thank you. It is a bug.
You are using the same status-names as in wordpress core, for example ‘pending’, see:
https://github.com/WordPress/WordPress/blob/master/wp-includes/post.phpSee also https://github.com/imath/wp-statuses (post_type parameter!)
Regards
Ok, thank you!
This is the code for customizr theme:
if(function_exists('onepager')){ add_action('wp_enqueue_scripts', 'remove_my_theme_scripts', 99); function remove_my_theme_scripts(){ $isOnepage = onepager()->content()->isOnepage(); if(!$isOnepage){ return; } //put the script, style handles to remove them on onepager //wp_dequeue_script('customizr-common'); wp_dequeue_style('customizr-common'); wp_deregister_style('customizr-common'); } }
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Links on mapped domain not correctSorry, found the solution:
I activated the plugin just for one site (So it is possible to manage mappings just from that site)
Wrong logic! I had to activate it for all blogs! now it is working.
Thanks for your help.Forum: Plugins
In reply to: [WordPress MU Domain Mapping] Links on mapped domain not correctThanks. No, it is the normal menu (appears as soon as a page is created)
If this is not normal, could it be another plugin like “Networks for WordPress”?Hi,
Same error, my fix – please review:
File iew-ticket-user.php:
Replace:
header("Location:".$usrurl."&do=show&id=".$id);
with
_iew_user_show_ticket();
File iew-ticket-admin.php:
Replace:
header("Location:".$admurl."&do=show&id=".$id);
with
_iew_admin_show_ticket();
Regards
debain