Access Keys
Forum Replies Created
-
Hello there,
The feature is bit custom feature and may not be useful for other plugin users so if we get futher requests on this feature, then we will try to add the feature.
Thanks.
Hello there,
We are still bit unclear. Can you please clarify using some screenshots?
Thanks.
Forum: Reviews
In reply to: [AccessPress Store] ProblemsHi,
Thank you for your review and we appreciate pointing our flaws which in turns will help us to understand our theme users and their needs.
Regarding your question, Eli is a basic support staff and she helps users to understand our themes. She is not the technical support staff as you already seems to know. The technical question is transferred to the core staff and they helps user to solve the problem. We have a support turnover time of 24-48hr for the email.
Here we are not trying to defend our self but trying to make the picture clear. We double check our all the themes before releasing but there are always some bug that gets in. As you are also a developer, you must be aware about it as well. But we fix the bug in the update release as soon as possible.
Thank you
Hello there,
We don’t get you, where have you included editor-styles.css file?
Thanks
Forum: Themes and Templates
In reply to: [AccessPress Store] change add to cart hoverFor this you can use following steps :
PUT THIS IN YOUR CHILD THEME FUNCTIONS FILE*/
/*STEP 1 – REMOVE ADD TO CART BUTTON ON PRODUCT ARCHIVE (SHOP) */
function remove_loop_button(){
remove_action( ‘woocommerce_after_shop_loop_item’, ‘woocommerce_template_loop_add_to_cart’, 10 );
}
add_action(‘init’,’remove_loop_button’);
/*STEP 2 -ADD NEW BUTTON THAT LINKS TO PRODUCT PAGE FOR EACH PRODUCT */
add_action(‘woocommerce_after_shop_loop_item’,’replace_add_to_cart’);
function replace_add_to_cart() {
global $product;
$link = $product->get_permalink();
echo do_shortcode(‘View Product‘);
}Thanks
Forum: Plugins
In reply to: [AccessPress Social Share] Not working in excerptsHello there,
Can you please ask for support in our support mail support@accesspressthemes.com with your site link where your are having issue. We will check and reply back.
Thanks
Hello there,
There is bug in the plugin for the template 4. We will release an update of a plugin with bug fix. Thank you for notifying the issue 🙂
Thanks
Forum: Plugins
In reply to: [TAuto Poster] Error : Missing required parameter: status.Hello there,
Can you please recreate a twitter app and check?
Thanks
Hello there,
We don’t have any ETA for that but we will let you know when we add this feature.
Thanks
Forum: Themes and Templates
In reply to: [AccessPress Store] change add to cart hoverHi there,
You can add this code in your function.php.add_filter( ‘woocommerce_product_add_to_cart_text’ , ‘custom_woocommerce_product_add_to_cart_text’ );
function custom_woocommerce_product_add_to_cart_text() {
global $product;
$product_type = $product->product_type;
switch ( $product_type ) {
case ‘external’:
return __( ‘Buy product’, ‘accesspress-store’ );
break;
case ‘grouped’:
return __( ‘View products’, ‘accesspress-store’ );
break;
case ‘simple’:
return __( ‘Add to cart’, ‘accesspress-store’ );
break;
case ‘variable’:
return __( ‘Select options’, ‘accesspress-store’ );
break;
default:
return __( ‘Read more’, ‘accesspress-store’ );
}
}This should work.
Thanks
Forum: Plugins
In reply to: [AccessPress Social Share] Speed issueHello there,
We haven’t done any hooks to wp-cron and it’s a strange issue that you are having. We will look into the issue in more detail if you send us your site details to our support mail support@accesspressthemes.com
Thanks
Hello there,
This feature is not available yet.
Thanks
Forum: Plugins
In reply to: [AccessPress Social Counter] None of the button is workingHello there,
Can you please ask for support to our support email support@accesspressthemes.com with your site details so that we can check the issue properly.
Thanks
Forum: Plugins
In reply to: [AccessPress Social Counter] problem with facebook iconHello there,
Have you tried by clearing the cache of the plugin?
Thanks
Forum: Plugins
In reply to: [AccessPress Social Counter] Instagram Access Token Not WorkingHello there,
We have just checked the above link and it is generating successfully access token. Can you please check again?
Thanks