Tim Kerremans

Forum Replies Created

Viewing 15 posts - 1 through 15 (of 61 total)
  • Author
    Posts
  • Tim Kerremans
    Participant

    Okay the license is activated and I am able to create variable products. However, now the ‘all products’ page is broken as it only shows mobile view (also on desktop) and is not showing products.

    Please check my attached screenshot to see what I mean

    Tim Kerremans
    Participant
    This reply has been marked as private.
    Tim Kerremans
    Participant

    I don’t understand, I have given you access to activate the license. You can check this yourself while you are on the WordPress admin panel.
    Clearly the goal (activating the license) has not been achieved as it is still deactivated and I’m still not able to activate it in any way.

    Tim Kerremans
    Participant
    This reply has been marked as private.
    Tim Kerremans
    Participant
    This reply has been marked as private.
    Tim Kerremans
    Participant

    Hi,

    This also does not work, I just did exactly what you told to do but it makes no difference for me unfortunately

    Tim Kerremans
    Participant

    Hi,

    I am trying to use my old frontend manager key but I’m unable to activate the new plugin on my staging website with this key. I have tried to purge ALL cache, re-enter api key and product id but it is not working. The status is always showing ‘deactivated’.

    On my live website the api key is showing activated as it should

    Tim Kerremans
    Participant

    Can you also already share coupon code for option B? If I manage to make it work with option A I will get the advanced frontend with discount code

    Tim Kerremans
    Participant

    Please read my message. You have already shared option A with me (just look at the previous messages!) but it does not include variable products

    Tim Kerremans
    Participant

    Hi,

    It seems like this version of the plugin does not include the option to add variable products. I tried tweaking all settings to enable variable products but am only able to add simple products from vendor dashboard. Can you please share a version that does include the option for the vendors to add variable products?

    I attached some screenshot to show that I have enabled all necessary options to add variable products without success.

    Tim Kerremans
    Participant

    Hi, thanks for getting back to me.

    I’d like to start with option A to test this new version. I’m indeed using Frontend Manager on top of the core plugin. Can you share the plugin with frontend module?

    in reply to: Automatically change product status after disapproval #140036
    Tim Kerremans
    Participant

    This is if we want to change the status to disapproved, but what if we just want to change the product status to draft after rejecting product?

    in reply to: Only apply function on certain page #138332
    Tim Kerremans
    Participant

    Are you even reading my questions? It is not working, like I already said

    in reply to: Only apply function on certain page #138313
    Tim Kerremans
    Participant

    I already gave you a working code snippet in my first message.

    add_filter( ‘as3cf_object_meta’, array( $this, ‘object_meta’ ), 10, 4 );

    function object_meta( $args, $post_id, $image_size, $copy ) {
    $extension = pathinfo( $args[‘Key’], PATHINFO_EXTENSION );

    // Example places (potentially large) movie files in a different bucket than configured.
    // Also changes path prefix to match that used in CDN behavior’s “Path Prefix” for this second origin.

    if ( in_array( $extension, array( ‘pdf’, ‘csv’ ) ) ) {
    // Change bucket.
    $args[‘Bucket’] = ‘media.holymowly.com’;

    // Change key (don’t do this for images, thumbnails will not get new prefix and will not be usable).
    $filename = pathinfo( $args[‘Key’], PATHINFO_FILENAME ) . ‘.’ . $extension;
    $args[‘Key’] = ‘other/’ . $filename;
    }

    // Example sets “Content-Disposition” header to “attachment” so that browsers download rather than play audio files.
    /*
    if ( in_array( $extension, array( ‘mp3’, ‘wav’ ) ) ) {
    // Note, S3 format trims “-” from header names.
    $args[‘ContentDisposition’] = ‘attachment’;
    }*/

    return $args;
    }

    Tim Kerremans
    Participant

    I, and you guys have shared a working code that will restrict this option on WP, did you read the previous messages?
    This function works, the only problem is that I want to apply this on only ONE page, which happens to be on your dashboard.

    Wordpress guys gave me 2 options to filter the page:
    -> Apply if function based on current page ID
    -> Apply if function based on current page template

    As this is indeed a page on your dashboard, they do not want to help me further. They can only help me with code related to WordPress and to debug this which I also shared with you.

    I have been asking about this for over 2 months and it seems like we’re just going in circles. I really don’t know what else I need to provide as I already provided a working code! We just need to add a filter that will apply this code on only one page

Viewing 15 posts - 1 through 15 (of 61 total)