Forum Replies Created

Viewing 15 replies - 1 through 15 (of 23 total)
  • Plugin Contributor Mark Winiarski

    (@xingupl)

    Hi,
    in plugin settings, you can find toggle button:
    “Disable Surfer writing guidelines in Elementor editor”
    Just turn it on.

    Have a great day!

    Plugin Contributor Mark Winiarski

    (@xingupl)

    Hi,
    sorry for late response!

    As we mentioned in the first post:
    https://ww.wp.xz.cn/support/topic/read-first-6/
    We do not check this channel very often, and reaching us via email or chat is the best way to solves the issues quick. Sorry for waiting time and trouble!

    Anyway, you are right. I’m checking the issue and I will release the fix at the beginning of the next week. Again, sorry for the delay and if you have further questions, please reach our support via e-mail to allow us to provide the best quality of services.

    Have a great day!

    Thread Starter Mark Winiarski

    (@xingupl)

    Hi,
    I was able to find the solution. As I mentioned, I was using REST API using Application Password, and WordFence by default have enabled option to block using Application Passwords in Brute Force Protection section. Disabling this option solve my issue.

    Thanks for your help, have a good day!

    Thread Starter Mark Winiarski

    (@xingupl)

    Hi,
    thank you for your help. I sent the diagnostics as suggested.

    Thank you.
    Mark.

    Thread Starter Mark Winiarski

    (@xingupl)

    Hi,
    thank you for feedback and proposition, unfortunately it is not working for me. If I set this like you proposed, or set no limit, or even disable whole Rate Limiting still have the same result.

    Case is, that no matter how I set up WordFence I have this issue. Even if I disable all features that I can disable, the issue is still there, but if I disable WordFence as a plugin, all issues are gone and everything is working like it should.

    I didn’t have anything like this before, and completely not understand this, as when I will disable all features WordFence have, this should have similar effect to disabling plugin, right?

    It is a standard WordPress REST API endpoint. Nothing special about that. I authenticate it by capability and application password. Capability and role are custom one.

    The issue occurs not only for me, but for the few of our clients, where the pattern is the same. No matter how they configure, WordFence request is blocked. If they temporarily disable WordFence, the API is working.

    Thanks again for your help,
    Mark.

    Thread Starter Mark Winiarski

    (@xingupl)

    Hi,
    yes, we tried that. This is the image of log in Live Traffic:
    https://a.tmp.ninja/lmlNWAVO.png

    Thread Starter Mark Winiarski

    (@xingupl)

    Hi,
    I made a little investigation with my server provider. Scraping failed because there was a connection timeout. Unfortunately, this timeout was caused by your plugin. My page was loading 22 seconds. When I changed Kiwi to Sassy Social Share loading time was reduced to 6 seconds.

    I’m not sure why loading time was so long.

    Hi,
    you can download those add-ons (and much more) from GitHub:
    https://github.com/simpliko/wpadverts-snippets
    At the end of the list, you have search-by-category and search-by-price.

    You can save the whole directory in wp-content / plugins and use as a new plugin. Another option is to remove plugin header from the file and copy the code to functions.php.

    Hi,
    WPAdverts have 3 step adding system:
    1) Creating: You have form and you can create your ad
    2) Preview: You can check how your ad will be visible
    3) Save: Ad is actually saved.

    Hi,
    do you have this issue each time you upload the file? Also if this is happening only on mobile?

    Please note, that there are several factors that upload speed depends on:
    – Your internet connection speed (Wi-Fi signal strength, mobile phone signal strength, actual upload speed for your network, even weather conditions can slow down your wireless connection).
    – Our server efficiency – many users can test their own demo at once, so we can allow one user to use all server transfer.
    – Random connection issues – sometimes every server and internet provider can have a bad day with some kind of issues when all network work slower.

    We can only tell, that we do not receive this kind of bug reports for our customers. Also, the plugin is for free, so you can check it on your actual server.

    Hope that helps.

    Hi,
    thank you for your propositions. We definitely consider them.

    Hi,
    please try to refresh your permalinks. To do this:
    1) Go to: wp-admin -> Settings -> Permalinks
    2) Click “Save”.

    In most cases this help with redirect issues.

    Hi,
    I understand the first part. You want to have optional email field, and you achieved it using custom fields. But I do not understand the second issue. Could you help me to understand what you trying to achieve?

    Hi,
    you can always use @media screen param for your CSS to change width for mobiles:

    /*--------------------------------------------------------------
    2.1 - MAXIMUM width of 720 pixels (phones landscape)
    --------------------------------------------------------------*/
    @media screen and (max-width: 720px) {
    
    }/* don't delete this closing bracket */
    
    /*--------------------------------------------------------------
    2.2 - MAXIMUM width of 350 pixels (phones portrait)
    --------------------------------------------------------------*/
    @media screen and (max-width: 350px) {
    
    }/* don't delete this closing bracket */
    
    /*--------------------------------------------------------------
    2.3 - MINIMUM width of 721 pixels (tablets+)
    --------------------------------------------------------------*/
    @media screen and (min-width: 721px)  {
    
    }/* don't delete this closing bracket */
    
    /*--------------------------------------------------------------
    2.4 - MINIMUM width of 1040 pixels (desktops and laptops)
    --------------------------------------------------------------*/
    @media screen and (min-width: 1040px)  {
    
    }/* don't delete this closing bracket */
    
    /*--------------------------------------------------------------
    2.5 - MINIMUM width of 1540 pixels (desktops and laptops)
    --------------------------------------------------------------*/
    @media screen and (min-width: 1540px)  {
    
    }/* don't delete this closing bracket */

    Also, you can try to use this code:

    width: 100%;
    max-widths: 1100px;
    box-sizing: border-box;

    Hi,
    this code should do the trick:

    add_filter("adverts_action_", "adverts_action_block");
    add_filter("adverts_action_preview", "adverts_action_block");
    add_filter("adverts_action_save", "adverts_action_block");
    function adverts_action_block($content) {
        
        if(!get_current_user_id()) {
            wp_enqueue_style( 'adverts-frontend' );
            wp_enqueue_style( 'adverts-icons' );
            
            ob_start();
            $permalink = get_permalink();
            $message = __('Only logged in users can access this page. <a href="%1$s">Login</a> or <a href="%2$s">Register</a>.', "adverts");
            $parsed = sprintf($message, wp_login_url( $permalink ), wp_registration_url( $permalink ) );
            adverts_flash( array( "error" => array( $parsed ) ) );
            $content = ob_get_clean();
        }
        
        return $content;
    }
Viewing 15 replies - 1 through 15 (of 23 total)