*

buggyboy

  • ***
  • 34 posts
  • ---
Send to a Friend with white page...
« on: July 21, 2023, 06:35:15 PM »
Hello.
I just bought the Epsilon Theme. with the function send email to a friend, I get a white page after submitting the form.
I have already looked here in the forum, but the post from 2017 with the search engine friendly links does not work for me.

Can you help me?
I use the Evo Classsiefied version, but the function works with a different template.

Thanks very much Peter
spiel-zeit-shop.de
brettspiele-flohmarkt.de
lesumer-spieleladen.de

*

MB Themes

Re: Send to a Friend with white page...
« Reply #1 on: July 22, 2023, 02:01:22 PM »
Enable error logging, you are probably getting some php error there
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

buggyboy

  • ***
  • 34 posts
  • ---
Re: Send to a Friend with white page...
« Reply #2 on: July 23, 2023, 07:25:52 AM »
Hello,
I activated the error log yesterday.
No result.
Then I searched a bit here in the forum and got a hint: You once wrote to a user whether he had activated the recaptcha for the form. And that's exactly what happened to me. You just don't see it when the form comes up. You have to scroll down a bit.

In which file could you extend the form by a few pixels so that you can also see the recaptcha field?
style.css and if so, which entry would need to be changed?

Best regards
spiel-zeit-shop.de
brettspiele-flohmarkt.de
lesumer-spieleladen.de

*

MB Themes

Re: Send to a Friend with white page...
« Reply #3 on: July 23, 2023, 10:23:49 AM »
Got you.
This one shoukd be global.js where you set height of popup.
  To get fast support, we need following details: Detail description, URL to reproduce problem, Screenshots

*

buggyboy

  • ***
  • 34 posts
  • ---
Re: Send to a Friend with white page...
« Reply #4 on: July 23, 2023, 11:50:40 AM »
Hi.
This Code:
Code: [Select]
// FANCYBOX - OPEN ITEM FORM (COMMENT / SEND FRIEND / PUBLIC CONTACT / SELLER CONTACT)
  $('body').on('click', '.open-form', function(e) {
    e.preventDefault();
    var height = 600;
    var url = $(this).attr('href');
    var formType = $(this).attr('data-type');

    if(url.indexOf('loginRequired') !== -1) {
      window.location.href = url;
      return;
    }
   
    if(formType == 'comment') {
      height = (userLogged == 1 ? 490 : 640);
      height += ($(this).hasClass('has-rating') ? 55 : 0);
    } else if(formType == 'contact') {
      height = (userLogged == 1 ? 490 : 640);
    } else if(formType == 'friend') {
      height = (userLogged == 1 ? 540 : 705);
    } else if(formType == 'contact_public') {
      height = (userLogged == 1 ? 490 : 640);
    }
   
    epsModal({
      width: 380,
      height: height,
      content: url,
      wrapClass: 'item-extra-form',
      closeBtn: true,
      iframe: true,
      fullscreen: 'mobile',
      transition: 200,
      delay: 0,
      lockScroll: true
    });
  });

var height = 600;
or
 else if(formType == 'friend') {
      height = (userLogged == 1 ? 540 : 705);

Thanks
Peter

spiel-zeit-shop.de
brettspiele-flohmarkt.de
lesumer-spieleladen.de