xian06
Forum Replies Created
-
Forum: Plugins
In reply to: [YITH Live Chat] Google Firebase Critical AlertI have received the same email from FireBase stating
[Firebase] Your Realtime Database ‘*****-***’ has insecure rules
We’ve detected the following issue(s) with your security rules:
• any logged-in user can read your entire database
• any logged-in user can write to your entire databaseHas this been confirmed to be a false positive? Is there anything I can do to fix it so I stop receiving the emails from FireBase.
Thank you,
Forum: Reviews
In reply to: [Beaver Builder Page Builder - Drag and Drop Website Builder] AmazingHi, I have the answer regarding the question you asked here: https://ww.wp.xz.cn/support/topic/displaying-a-logo-in-place-of-title/
the below CSS will do the trick you were wanting
.shiftnav-menu-title a, .shiftnav-menu-title a:hover, .shiftnav-menu-title a:visited { color: rgba(34, 34, 34, 0); text-decoration: none; background-image: url(YOURLOGO.png); background-size: 80%; background-repeat: no-repeat; background-position: center; }Well I turned WP_DEBUG on and now I am receiving a HTTP ERROR 500
I cannot get any error to log/show all it does is the dreadful WordPress blank white site pages.
Thanks Again,
yes the open tag is present. There is no error that displays or is logged.
It simply makes my site blank white pages.
I have a feeling it is these 2 filters that is causing my issue as i am already using the invoice filter from another function script for default template.
add_filter( 'load_view_args_admin/meta-boxes/invoices/information.php', '_si_information_meta_box_args' ); add_filter( 'load_view_args_admin/meta-boxes/estimates/information.php', '_si_information_meta_box_args' );Thank you,
Forum: Themes and Templates
In reply to: [Phosphor] Primary Menu appearance on Android smartphonesI am in the same boat.
We would like to have the 3 lines icon instead..
Forum: Plugins
In reply to: [WooCommerce Ajax Cart Plugin] ajax for delete?i am in need of the same.. if you figure it out please share.
Thank you,
Forum: Plugins
In reply to: [YITH WooCommerce Multi-step Checkout] Add scroll to top when buttons clickedOk thank you! I would really appreciate it Thank you!
and yes it requires an SSL cert.
My client has been using this PayHub plugin and when updated to woocommerce 2.1 it broke this plugin.
I fixed this plugin to work with Woocommerce 2.1 using the below code edit:
I replaced this code:
return array( 'result' => 'success', 'redirect' => add_query_arg('key', $order->order_key, add_query_arg('order', $order_id, get_permalink(get_option('woocommerce_thanks_page_id')))) );With this code:
$result = array( 'result' => 'success', 'redirect' => $this->get_return_url($this->order) ); return $result;