Forum Replies Created

Viewing 15 replies - 16 through 30 (of 63 total)
  • I have this problem too. Our newsmagazine should not have the article structured data at our homepage.

    It would be nice to have a structered data selection per page, post and other content types.

    Thanks and best regards,
    Jack

    Thread Starter Jack All

    (@jack-all)

    The security header enforces images to be loaded only from the current domain, so that’s a good thing and not the issue. Problems that arise are:
    1. Kaspersky AV nests between showing svg icons in the browser and checking for vulnerabilities or so, before they show up in wp-admin. This is not allowed by new measures, e.g. security header img src ‘self’.
    2. Google Analatics code calls cleardot.gif from google or doubleclick servers, also against new security rules, causing analytics to drop.

    Just wanted to inform you about this and let you know about the icons not showing up in the menu and wp-admin on Yoast admin pages, because of issue 1. Just in case you might have questions about that in the future. Yoast can avoid that by using *.gif or *.ico images instead of *.svg for showing icons on Yoast Plugin admin pages.

    Thanks for your time!
    Regards,
    Jack.

    • This reply was modified 6 years, 7 months ago by Jack All.
    • This reply was modified 6 years, 7 months ago by Jack All.

    Hi cljohns4,

    Using Adblock Plus could be causing this, I had the same problem.

    regards,
    Jack

    Thread Starter Jack All

    (@jack-all)

    Hi Koreff,
    Yes, I think you’ll have to add every page in the if clause seperated by ||.

    There might also be other ways, but I am not aware of any way to identify a page containing a Responsive Photo Gallery and hook into that. You could ask the support team here.

    Have a look at some of the other tips on the following Easy FancyBox support pages:
    https://www.ads-software.com/support/topic/disable-fancybox-for-homepage/
    and
    https://www.ads-software.com/support/topic/only-load-fancy-box-js-code-css-on-one-page/
    Maybe that works for you.

    Regards,
    Jack

    Thread Starter Jack All

    (@jack-all)

    Hi koreff,

    That is the part of the url that holds the page (or post) name of your gallery page, also called “slug” or permalink. You can see the name in Edit and Quick Edit modes in WordPress Admin.
    For this page the name would be “conflict-with-fancybox-plugin-2”

    Good luck,
    Jack.

    Thread Starter Jack All

    (@jack-all)

    Hi RavanH,

    Thanks for your support! There’s an option to disable the lightbox in the Responsive Photo Gallery that I tried earlier, but then Easy Fancybox also doesn’t pop-up.
    Maybe the Photo Gallery team has a permanent fix for this.

    In Photo Gallery there seems no option available to enable a lightbox on non-gallery pages. Might be a good idea for the next version ??
    There is an option to not load the script on non photo gallery pages, but that is not what I’m looking for.

    Nevertheless I got it working with your code, so I’m happy now ??

    Kind regards,
    Jack.

    • This reply was modified 7 years, 2 months ago by Jack All.
    • This reply was modified 7 years, 2 months ago by Jack All.
    Thread Starter Jack All

    (@jack-all)

    I’ve found this solution from the Easy Fancybox plugin author. Put the code below at the end of the functions.php of your theme:

    add_action('wp_head','my_conditional_script',0);
    function my_conditional_script() {
        if ( is_page('your-page-name') || is_page('your-page-name-2') ) {
            remove_action('wp_enqueue_scripts', array('easyFancyBox', 'enqueue_styles'), 999);
            remove_action('wp_head', array('easyFancyBox', 'main_script'), 999);
            remove_action('wp_print_scripts', array('easyFancyBox', 'register_scripts'), 999);
            remove_action('wp_footer', array('easyFancyBox', 'enqueue_footer_scripts'));
            remove_action('wp_footer', array('easyFancyBox', 'on_ready'), 999);
        }
    }
    • This reply was modified 7 years, 2 months ago by Jack All.
    Thread Starter Jack All

    (@jack-all)

    The web site is running on a shared hosting platform. How to figure that out?

    Am I correct in thinking wpcf7 uses a background process in php, like wp_mail(), before it is being forwarded to the client? Is there a way to debug that part?
    As I said the message in plain text on the server is already missing the last character. So IMHO it can not be my local mail client that is malforming the From name.

    Thread Starter Jack All

    (@jack-all)

    Hmmm, strange behaviour ?? It seems that with option ‘caching’ deactivated and cache flushed, the plugin still caches pages! I’ll notify the author on that, tnx.
    I’ve now flushed the cache again and disabled the plugin completely.

    But it does not seem to make any difference. After testing the form again, I used ftp to check the file with the sent message in the Maildir folder on the webserver. I am able to see the error in the FROM: field there.

    It looks like something goes wrong in code after processing the form, when creating the email message. We might have stumbled upon a bug here. If it’s not wpcf7 then it might be wp_mail() or another script. As I said before, the [your-name] field in Flamingo states the name correctly.

    Many thanks for your precious time and help!

    • This reply was modified 7 years, 7 months ago by Jack All.
    Thread Starter Jack All

    (@jack-all)

    A complete list of my plugins (all up to date):
    – Akismet Anti-Spam
    – Contact Form 7
    – Flamingo
    – Google Analytics for WordPress by MonsterInsights
    – Loginizer
    – Social Media and Share Icons (Ultimate Social Media)
    – WP Fastest Cache (not active)
    – Yoast SEO

    WP theme: Catch responsive
    Wordpress: 4.8.1

    Thread Starter Jack All

    (@jack-all)

    Tnx for your quick response! I forgot about that…
    Meanwhile I did some deeper investigation en I can see in Flamingo that the name is spelled correctly in the your-name field. Tried with Flamingo plugin deactivated. It still missing the last character in the name when receiving the forwarded email.

    I’m using latest WordPress version pretty much out of the box with few plugins as possible. Looks something in the backend is not working right…

    https://recyclagedebacker.be/contact

    Yep, I did.
    It means there’s no translation of the W3 Total Cache FAQ for your language.
    Just make a connection through FTP and go to folder
    public_html/wp-content/plugins/w3-total-cache/languages/
    Then copy the file
    faq-pro-en_US.xml
    to
    faq-pro-de_DE.xml
    To the same folder and the error is gone.

    Cheers!
    Jack.

    It means there’s no translation of the W3 Total Cache FAQ for your language.
    Just make a connection through FTP and go to folder
    public_html/wp-content/plugins/w3-total-cache/languages/
    Then copy the file
    faq-pro-en_US.xml
    to
    faq-pro-it_IT.xml
    To the same folder and the error is gone.

    Cheers!
    Jack.

    Thread Starter Jack All

    (@jack-all)

    Hi Cais,
    I did, but I’m sorry to say that your solutions like doing a clean install, disabling other plugins, choose a standard theme, disable cache, and other standardized answers, didn’t help me at all… but it has cost me a lot of money and time after a simple upgrade.

    I found out that reverting to v2.1.23 was the only working solution. So I fail to see why the problem lies within my install of wordpress and/or theme and/or plugins.
    Maybe you can tell me why v2.1.23 works and v2.1.26 doesn’t, because I’m not able to. What was changed that could break Light Box Pro?

    Regards,
    Jack

    Thread Starter Jack All

    (@jack-all)

    Thanks for your time no3x,

    As I mentioned in my first post, this is what I’ve configured already. And the mail is being sent correctly with attachment. So that works fine.

    I still only see a cross in the mail list log. When a user does not upload a file there’s no cross in the mail list log. Mark the difference.

    Am I still missing something?

    Regards, Jack.

Viewing 15 replies - 16 through 30 (of 63 total)