ryandesigned
Forum Replies Created
-
Thank you so much Aert for this script adjustment! I think it is working correctly now.
Hello Aert,
Thanks for your reply!
We are already using this updated version of the script, and the issue on that one particular page only, still exists.
Thanks so much for the help!
Ryan
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Rolex mu-pluginThank you so much for the answer and clarification, I just wanted to rule out that the plugin doesn’t enqueue the script. We have resolved the issue!
Forum: Plugins
In reply to: [Complianz - GDPR/CCPA Cookie Consent] Rolex-mu-pluginThank you for checking.
I guess I was testing incorrectly, as I saw that Adobe tracking seemed to be blocked even when I allowed consent!
It seems that when I have the Cookie Blocker enabled, it blocks the Rolex / Adobe Cookies even when I click the Cookier banner button that’s set to “Accept All.” Am I configuring something incorrectly?
Thanks!
- This reply was modified 1 year, 7 months ago by ryandesigned.
Thanks so much that works!
Thanks… I understand that.
When I use:
[bpps_profile_displayname current_user=”yes”]
it still only shows the display name of the logged in user.
However for example…when I use
[bpps_profile_avatar current_user=”yes”]
it correctly displays and forces the displayed user avatar
I’m not sure why it works with one shortcode and not the other!
Thanks
Forum: Plugins
In reply to: [GamiPress - BuddyBoss integration] Points on SidebarI
- This reply was modified 2 years, 6 months ago by ryandesigned.
Thanks, but I’m not sure this solution prevents the issue. We are using paypal and the admin is paying the fees currently. Let’s say someone registers their store from the USA, but they are actually in Canada and the vendors paypal account is from Canada, so when customer buys their product, the admin has to pay international fees. Is there anyway to only allow payments to USA PayPal accounts?
Thanks
Any help on this? Still unable to save/turn on this setting under capability!
Yes, I have already explained that under capability, it shows it as OFF. When I turn it on, it will not save the changes. With page refresh, it turns itself back off. This is the only taxonomy that behaves this way…
The brand taxonomy worked as expected for months, and my vendors were using it when adding products. It just turned itself off with the latest update, I believe.
I have added this code to the functions.php of my child theme..
add_action( ‘init’, ‘custom_taxonomy_Brand’ );
function custom_taxonomy_Brand() {
$labels = array(
‘name’ => ‘Brand’,
‘singular_name’ => ‘Brand’,
‘menu_name’ => ‘Brand’,
‘all_items’ => ‘All Brands’,
‘parent_item’ => ‘Parent Brands’,
‘parent_item_colon’ => ‘Parent Brand:’,
‘new_item_name’ => ‘New Brand Name’,
‘add_new_item’ => ‘Add New Brand’,
‘edit_item’ => ‘Edit Brand’,
‘update_item’ => ‘Update Brand’,
‘separate_items_with_commas’ => ‘Separate Brands with commas’,
‘search_items’ => ‘Search Brands’,
‘add_or_remove_items’ => ‘Add or remove Brands’,
‘choose_from_most_used’ => ‘Choose from the most used Brands’,
);
$args = array(
‘labels’ => $labels,
‘hierarchical’ => true,
‘public’ => true,
‘show_ui’ => true,
‘show_admin_column’ => true,
‘show_in_nav_menus’ => true,
‘show_tagcloud’ => true,
);
register_taxonomy( ‘brand’, ‘product’, $args );
register_taxonomy_for_object_type( ‘brand’, ‘product’ );
}I have also added other custom taxonomies using the same code, and those continue to work fine. It’s the “brand” taxonomy only that disappeared and wont turn back on. Also, the brand taxonomy continues to work as expected on my un-updated development site.
Thanks
My custom “Brand” section still works as normal on the admin side, when adding a product.
Thanks so much… I have attched the screenshot here:
I would like to add the text, “amount should include cost of shipping” to either before or after the price input area.
Hope this makes sense!