Forum Replies Created

Viewing 30 posts - 7,321 through 7,350 (of 67,463 total)
  • Author
    Posts
  • in reply to: Contact Form #1420379

    Hi,

    Thank you for the update.

    Please use the following plugin to verify that the wp_mail function is working properly.

    // https://wordpress.org/plugins/wp-test-email/

    1.) First, download and install the “WP Test Email” plugin from the WordPress plugin repository.

    2.) After activation, go to your WordPress dashboard.

    3.) In the left-hand menu, navigate to “Tools” and click on “WP Test Email”.

    4.) On the WP Test Email settings page, you’ll find a simple form. Enter the email address where you want to send the test email in the “To” field. This can be any valid email address.

    5.) In the “Subject” field, you can specify the subject of the test email.

    6.) In the “Message” field, you can write a test message or leave it blank; the message content is not crucial for this test.

    7.) Click the “Send Test Email” button.

    8.) The plugin will attempt to send the test email using the wp_mail function. If the function is working correctly, you should receive the test email at the address you specified.

    9.) Check your email inbox (and spam folder, just in case) to see if the test email has been delivered successfully.

    10.0 If you receive the test email, it confirms that the wp_mail function is working properly on your WordPress site. You can then use it for various email notifications, contact forms, or any other email-related functionality.

    If you encounter any issues or don’t receive the test email, it may indicate a problem with your email configuration or server settings. In that case, you may need to review your email settings or contact your hosting provider for assistanc.

    Please feel free to reach out if you have any questions or encounter any issues during the process.

    Best regards,
    Ismael

    in reply to: Header transparency Logo #1420377

    Hi,

    Good to know that you’ve found the option. If you have other questions, please feel free to open another thread.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Helvetica default font #1420376

    Hey!

    Thank you for the inquiry.

    We are getting a mixed content error in the console when we check the site. Have you tried re-uploading the fonts to the Custom Font Manager? (see private field)

    Regards,
    Ismael

    Hey davidkfry,

    Thank you for the inquiry.

    Please try to edit the enfold/config-templatebuilder/avia-shortcodes/numbers/numbers.php and look for this code around line 878:

    $replace = '<span class="avia-single-number __av-single-number" data-number_format="' . $number_format . '" data-number="$1" data-start_from="' . $atts['start_from'] . '">$1</span>';
    

    Replace it with:

    $replace = '<span aria-label="$1" class="avia-single-number __av-single-number" data-number_format="' . $number_format . '" data-number="$1" data-start_from="' . $atts['start_from'] . '">$1</span>';
    

    We just added the aria-label attribute with the actual or final number as value. Let us know if this helps.

    Best regards,
    Ismael

    in reply to: Inner pages showing wrong font #1420371

    Hi,

    Glad to know that this has been fixed. Please let us know if you have more questions.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Dynamic text #1420370

    Hey fanlokbun,

    Thank you for the inquiry.

    Yes, this should be possible with a custom field and shortcodes. Please check the following documentation for more info.

    // https://codex.wordpress.org/Shortcode_API
    // https://wordpress.org/documentation/article/assign-custom-fields/

    Example:

    add_shortcode('avs_iam_shortcode', 'avs_iam_shortcode_cb');
    
    function avs_iam_shortcode_cb($atts){
           extract(shortcode_atts(array(
                      'age' => 21,
           ), $atts));
           if(!isset($atts[0])) return;
           $field = esc_attr($atts[0]);
           global $post;
           $post_id = (NULL === $post_id) ? $post->ID : $post_id;
           return  "I am ". get_post_meta($post_id, $field, true) ." years old";
    }

    Shortcodes:

    [avs_iam_shortcode age=88]
    

    You have to add the “age” custom field in the post.

    Best regards,
    Ismael

    in reply to: Font Size in mobile version to big #1420369

    Hey OneOfMany,

    Thank you for the inquiry.

    You can adjust the font sizes for different screen width in the Enfold > Genera Styling > Typography panel. Additional style adjustments can be done in the Enfold > Advanced Styling panel.

    Best regards,
    Ismael

    in reply to: Enfold: Menü not visible in mobile version #1420368

    Hey OneOfMany,

    Thank you for the inquiry.

    We may need to inspect the site in order to provide the necessary modifications. Please provide the site URL in the private field.

    If you want the header to stick on scroll, please add this css code.

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all #header {
        position: fixed !important;
      }
    }

    Best regards,
    Ismael

    in reply to: Slider Revolution – Show Header at All Times #1420367

    Hi,

    Great! Glad to know that the modification worked. Please do not hesitate to open another thread if you have more questions regarding the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Having trouble making correct font to render #1420366

    Hi,

    No worries! Glad to know that the issue has been resolved. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Vimeo Popup: inline text anchor link does not work #1420365

    Hi,

    Thank you for the info.

    We tried to access the video directly, but the file or video doesn’t exist. Is the URL correct? Please check the private field.

    Best regards,
    Ismael

    in reply to: contact form autoresponder with field entries #1420364

    Hi,

    Thank you for the update.

    You have to add the filter in the child theme’s functions.php file. The $new_post variable is an array that contains the value of the input fields sent by the user.

    Best regards,
    Ismael

    in reply to: Design is not showing anymore #1420362

    Hi,

    Thank you for the screenshot.

    1.) As mentioned above, the suggestion is probably referring to the use of default themes such as TwentyX themes.

    2.) Did it say which module is missing? Please open the toggle and forward the info to us.

    3.) This will require the use of another database caching system such as Redis and Memcached, which might require additional server and it’s not available on shared hosting. You can try the following plugin instead.

    // https://wordpress.org/plugins/docket-cache/

    4-5.) Did you modify the .htaccess file? You may need to install security plugins such as WP Cerber or Sucuri to handle the security rules for the site.

    Best regards,
    Ismael

    in reply to: Featured Image Of Blog Post Getting Cropped #1420361

    Hi!

    Glad to know that this has been resolved. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Regards,
    Ismael

    in reply to: Small type issue on Enfold slider has returned #1420360

    Hey charger70,

    Thank you for the inquiry.

    You may have provided a different URL. Please provide the URL of the site shown in the screenshot. Have you tried editing the Styling > Font Sizes settings of the slide?

    Best regards,
    Ismael

    in reply to: Border around survey form #1420359

    Hi,

    No problem! Glad we could be of help. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Blog Title font color #1420357

    Hey stephaniebLOS,

    Thank you for the inquiry.

    You can adjust the H1 element in the Enfold > Advanced Styling panel, or use this css code to override the current style of the post title.

    #top #wrap_all .all_colors h1 {
        color: #000000;
    }
    

    Best regards,
    Ismael

    in reply to: Blog Featured image no styling #1420356

    Hey stephaniebLOS,

    Thank you for the inquiry.

    You can use this css code to adjust the style of the featured image, both for the overview and single post page.

    .small-preview img, .big-preview img {
        display: block;
        border-radius: 0;
        position: relative;
        z-index: 4;
        width: 100%;
    }
    
    .avia-content-slider .slide-image, .avia-content-slider .slide-image img {
        border-radius: 0;
        display: block;
        position: relative;
        -webkit-perspective: 1000px;
        -webkit-backface-visibility: hidden;
        margin: 0 auto;
    }

    You may need to temporarily disable the Enfold > Performance > File Compression settings after applying the modification.

    Best regards,
    Ismael

    in reply to: recurring events not showing #1420355

    Hi,

    Thank you for your patience. If you have additional questions, please open a new thread and provide the link to this thread for reference. We’ll close this thread for now as it’s getting a bit lengthy.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Main menu and footer #1420354

    Hi,

    Thank you for the update.

    Please look for this css rule to adjust the hover state.

    /* Icon color on hover */
    .widget .social_bookmarks li a:hover:before {
      color: #000;
      transition: all .35s ease;
    }
    

    Replace it with:

    /* Icon color on hover */
    .widget .social_bookmarks li a:hover:before {
      color: #ffffff;
      background: #0a66c2;
      transition: all .35s ease;
    }
    

    Best regards,
    Ismael

    in reply to: Wrong order of upcoming events #1420353

    Hey Michael,

    Thank you for the inquiry.

    We may need to access the site in order to properly check the issue. Please provide the WP and S/FTP details in the private field. In the meantime, please try to edit the enfold/config-templatebuilder/avia-shortcodes/events_upcoming/events_upcoming.php file around line 483.

    $query = array(
    	'paged'				=> $this->current_page,
    	'posts_per_page'	=> $params['items'],
    	'start_date'		=> 'now',
    	'eventDisplay'		=> 'list'
    );
    

    Replace it with:

    $query = array(
    	'paged'			=> $this->current_page,
    	'posts_per_page'	=> $params['items'],
    	'start_date'		=> 'now',
    	'eventDisplay'		=> 'list'
    );
    

    We just replaced start_date with “now”. Let us know if this changes anything.

    Best regards,
    Ismael

    in reply to: Spotify #1420352

    Hi,

    You might want to use one of these plugins as well.

    // https://wordpress.org/plugins/wp-shopify/
    // https://wordpress.org/plugins/search/shopify/

    Best regards,
    Ismael

    in reply to: Spotify #1420351

    Hey Edward,

    Thank you for the inquiry.

    The theme is not fully integrated with the Shopify platform, but you should still be able to embed Shopify’s “buy” button on the site if necessary. However, this might require some customization on your part. We recommend using the WooCommerce plugin instead.

    Best regards,
    Ismael

    Hey mustafa-alani,

    Thank you for the inquiry.

    I seek clarification on whether the cessation of WPML’s automatic renewal will impact the functional integrity of WPML

    We suggest reaching out to the WPML team for clarification, but our assumption is that ending the subscription may limit the plugin’s functionality. This could have an impact on the site, especially if it relies on features exclusive to subscribed users.

    Best regards,
    Ismael

    Hi,

    But I need a plugin in addition to gutenberg, because to add content and format job offers from the Simple Job Board plugin

    Yes, we understand your situation. However, please note that integrating and ensuring compatibility between third-party plugins and the theme is not covered by the scope of our support. We recommend keeping in touch with the plugin developers for further assistance. We’ll keep this thread open for any future updates.

    Best regards,
    Ismael

    Hi,

    Users will still be able to download your images even if you managed to disable the context menu on mobile devices. If you really want to protect the images, make sure NOT to display the original file or make it available only for subscribed or paying users. You can also install a watermark plugin.

    // https://wordpress.org/plugins/image-watermark/
    // https://wordpress.org/plugins/easy-watermark/

    Best regards,
    Ismael

    in reply to: Fullwidth Easy Slider images #1420267

    Hi,

    Thank you for the update.

    How can I upload images so that they have a universal size

    This is not possible because, as mentioned earlier, the images automatically resize based on the slider’s dimensions and the screen resolution of the viewer. The slider will maintain the images’ aspect ratio, but the size will vary across different screen sizes.

    A workaround is to add another slider and upload images specifically resized for smaller screens, such as phones and tablets. Then, toggle the Advanced > Responsive > Element Visibility settings to control the display of each slider on different screen sizes. This way, you’ll have a dedicated slider for desktop and another for smaller screens.

    When we checked the site above, the size of the slider images is 1200x628px. Please provide screenshots of the issue using platforms like Savvyify, Imgur or Dropbox.

    Best regards,
    Ismael

    in reply to: contact form autoresponder with field entries #1420266

    Hey Tilman,

    Thank you for the inquiry.

    You might be able to use the avf_contact_form_autoresponder_mail filter to adjust the autoresponder content and include the field entries to the message.

    Example:

    add_filter("avf_contact_form_autoresponder_mail", function($mail_array, $new_post, $form_params, $class) { 
         $mail_array["Message"] = "Hello " . $new_post["1_1"] . " " . $new_post["2_1"] . "!\n" . $mail_array["Message"];
    
         return $mail_array;
    }, 10, 4);
    

    The filter above prepends an extra line to the actual autoresponder message saying “Hello” plus the value of the first and second field.

    Best regards,
    Ismael

    in reply to: Vimeo Popup: inline text anchor link does not work #1420263

    Hey betaphase,

    Thank you for the inquiry.

    We are not able to check the first link because it requires htaccess authentication. Please provide the info in the private field.

    Best regards,
    Ismael

    in reply to: Burger menu not working on mobile #1420262

    Hi,

    Thank you for the update.

    Glad to know that this solved the issue. FYI, you don’t need to enable both because they serve the same purpose, so having both active won’t provide any performance improvement

    Best regards,
    Ismael

Viewing 30 posts - 7,321 through 7,350 (of 67,463 total)