pacikav
Forum Replies Created
-
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Responsiveness issueHi Tobias
Just want let you know I found solution to fix responsive issue:
just add width:100% !important
.grants-table table { width: 100% !important; }
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Responsiveness issueHi Tobias
check this link
[redaced][Moderator note: Please do not provide credentials to your site in the forums!]
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Responsiveness issueAh, sorry it’s:
[ redacted ]
[Moderator note: Please do not provide login credentials for your site! ]
Forum: Plugins
In reply to: [WooCommerce] Disable confirmation alertHi Mike
As I said I have to do some calculation on order page in wp-admin.
What the correcct way to get currency for current order?I found some way when I getting currency code and set as JS variable
Then I can worj with this variable.add_action( 'woocommerce_before_order_itemmeta', 'before_order_itemmeta', 10, 3 ); function before_order_itemmeta( $item_id, $item, $_product ){ global $woocommerce; $curr = get_woocommerce_currency(); echo "<script type='text/javascript'> currency_abbreviation = '".$curr."'; console.log(currency_abbreviation); </script>"; }
But it works not good, did not found why yet.
Is it correct way?Forum: Plugins
In reply to: [WooCommerce] Disable confirmation alertThank you Mike
That works.Forum: Plugins
In reply to: [WooCommerce] Disable confirmation alertHi Mike
Can you please with other issue?
On my site I would like automatically calculate shippping tax depends on shipping sum.
So I created js file and fire them with all admin scripts:functions.php
add_action('admin_enqueue_scripts', 'admin_hooks'); function admin_hooks( $hook ) { wp_enqueue_script( 'admin-hooks', get_template_directory_uri(). '/js/admin.hook.js' ); }
admin.hook.js
jQuery( "input.line_total" ).on('focus', function() { console.log('ad'); });
But when I click save this code doesn’t work until I refresh page.
Forum: Plugins
In reply to: [WooCommerce] Disable confirmation alertHi Mike
Can you please with other issue?
On my site I would like automatically calculate shippping tax depends on shipping sum.
So I created js file and fire them with all admin scripts:functions.php
add_action('admin_enqueue_scripts', 'admin_hooks'); function admin_hooks( $hook ) { wp_enqueue_script( 'admin-hooks', get_template_directory_uri(). '/js/admin.hook.js' ); }
admin.hook.js
jQuery( "input.line_total" ).on('focus', function() { console.log('ad'); });
But when I click save this code doesn’t work until I refresh page.
Forum: Plugins
In reply to: [WooCommerce] Disable confirmation alertMike
Is it possible override woocomerce’s admin js files in theme?
Or it should be like new plugin?
Can you say which files can be affected ?Forum: Plugins
In reply to: [WooCommerce] Disable confirmation alertHi Mike
did not get you exactly
No snippets exist for this so if you need extra customisation in the backend you’ll need a developer.
Do you mean I need a developer who will override for me woocommerce files?
Forum: Plugins
In reply to: [WooCommerce] Automatically calculate order total .Hi Reece
I have similar issue, can you please share your solution with me?
Forum: Plugins
In reply to: [Advanced Custom Post Search] No search resultssorry, wrong screenshots url in previous message
Here is url – https://buzz-test.cartwheels-creative.com.au/?page_id=285 form on bottom
Here is form settings – https://clip2net.com/s/3bzraUi
I have ‘Consultants’ post type and assigned ‘Type’, ‘Qualification’,’City’ taxonomies – https://clip2net.com/s/3bzrlF4, https://clip2net.com/s/3bzrsge
But when I try find ‘test’ and ‘city’ don’t get any results.ha ha, funny
It was the same problem like geoffmartin had.
Only I must add wp_footer() to my footer file ??Hi dcooney
I have similar problem, can you take a look please?
here is my page
https://devtestsite.co.uk/redstardigital/our-story/latest-news/
and screenshot
https://screencast.com/t/bn8ZnPkQZy
I see button didn’t load, don’t understand why.
Seems js files doesn’t loadsThanks, Alex