Forum Replies Created

Viewing 19 posts - 1 through 19 (of 19 total)
  • Author
    Posts
  • in reply to: Background video not looping #1283520

    I was also having the same problem. Enfold Version: 4.7.3, WordPress 5.6.2, and I have the Enable jQuery Migrate Helper plugin installed.
    Found the answer within the forum, a piece of code to add to functions.php file:
    https://kriesi.at/support/topic/background-video-in-color-overlay-stops-looping-after-update-to-4-7-6-4/#post-1281392

    • This reply was modified 3 years, 2 months ago by nbfc.
    in reply to: Enfold (4.7.6.4) > WordPress 5.6 #1277169

    Feb 2nd, still waiting on the new release that would fix the jQuery issues. Any updates??

    in reply to: Content is desappear! #1270255

    Masonry items on my sites also stopped working when I upgraded to WordPress 5.6
    Installing the plugin talked about here helped. https://kriesi.at/support/topic/problems-after-updating-to-wordpress-5-6-read-this-first/
    Hopefully, there will soon be an update to the theme and the problems will be fixed.

    in reply to: Urgent help needed: Enfold 3.6 Update Broke Website #644264

    For everyone who had/have issues updating to the new 3.6 (like i did), the issue is that the new update uses different file naming convention for the following (found in “/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes”):
    1. helper-mailchimp.php changed to > av-helper-mailchimp.php
    2. helper-masonry.php changed to > av-helper-masonry.php
    3. helper-slideshow.php changed to > av-helper-slideshow.php

    In order for me to update successfully, i have to delete the old files “helper-mailchimp.php, helper-masonry.php & helper-slideshow.php” right after uploading the updated enfold file via ftp. Apparently when you do an overwrite of the folder “enfold” via ftp, those three files don’t get deleted as there’s nothing to overwrite them with the new update. Hope that helps.

    in reply to: trigger a notification shortcode #512359

    Hi Rikard,

    Thank you for your effort in helping me. I’ve decided to try a different approach hence won’t be needing this feature anymore. Maybe i’ll put this on the backburner for now and hopefully in the future someone here will be able to provide a solution.

    in reply to: trigger a notification shortcode #511633

    Hi Ismael,
    Thanks for the suggestion but unfortunately it’s still not working. The .comeback-message is not showing up after i close the magnific popup video. I tired using the .show and .toggle but still no luck.

    in reply to: trigger a notification shortcode #510390

    Hi Dake,

    Thanks for looking into this. Unfortunately my website is inside our dev environment hence won’t be accessible outside of my company’s network. However i think i’m almost there. I have a custom php function that i think just needs a little bit of tweaking in order to work. Essentially, my goal is to use the built-in magnific close “button” as the trigger to show the notification. The notification is created using the built-in enfold notification shortcode with a custom css “comeback-message”. below is the custom function:

    function add_custom_notification_box(){
    ?>
    <script>
    $("button.mfp-close").on('click',function(){
      $(“.comeback-message”).show();
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_notification_box');
    

    Thanks again for your help!

    in reply to: wp rss aggregator #507325

    Hi Ismael,

    Thanks for the suggestion however i’ve already installed that “addon” from the very beginning and still no luck hence i was able to make it work using the default wp rss aggregator shortcode. My goal is to use the magazine shortcode to load the same rss feeds as if i’m using the wp rss shortcode. I just like how so much beautiful the magazine shortcode is rendered as oppose to the plugin’s default.

    in reply to: wp rss aggregator #506649

    Hi Basilis

    Thanks so much for looking into this. I’ve added the code

    
    function wpsites_auto_set_featured_image() {
    	global $post;
    		$featured_image_exists = has_post_thumbnail($post->ID);
    			if (!$featured_image_exists)  {
    				$attached_image = get_children( "post_parent=$post->ID&post_type=attachment&post_mime_type=image&numberposts=1" );
    					if ($attached_image) {
    						foreach ($attached_image as $attachment_id => $attachment) {
    							set_post_thumbnail($post->ID, $attachment_id);
    						}
    					}
    			}
    }
    add_action('the_post', 'wpsites_auto_set_featured_image');
    

    However thumbnail image is still not loading when using the magazine shortcode :(

    in reply to: wp rss aggregator #506614

    Hi Elliott,

    Yes, that was done on the actual post itself… And yes, posts are being aggregated via RSS feeds using the wp rss aggregator plugin.

    Is there a way to tweak the magazine shortcode so that it can pull the featured image as thumbnails via rss?

    Thanks again.

    in reply to: wp rss aggregator #506591

    Hi Elliott,

    Thanks for the reply. Can you elaborate more what you mean by “setting the featured images of these custom post types?” If I understood what you mean correctly then yes, i have set the featured image option already. Please refer to the screenshot below.
    featured image activated

    NOTE: Also if you look at my screenshot on post #506512. You’ll notice that the thumbnails are loading properly on each post using the wp rss aggregator shortcode. These thumbnails are the actual featured images on each of the posts.

    Thanks again for your help!

    in reply to: wp rss aggregator #506512

    Hi Andy,

    Thanks for replying. I know you’ve already mentioned that you guys don’t support 3rd party plugins but just wanted to know if there’s anything on the magazine shortcode that i can change/alter/tweak as the plugin itself is working fine with enfold. if you look at the url below (image attached as well magazine shortcode screenshot) and navigate down under “Latest insights”. Right below the magazine shortcode, you’ll notice that the aggregator is working perfectly fine (image thumbnails are all loading along with the posts). The magazine shortcode I believe is also working except that it doesn’t load the thumbnails of the post whereas if i use the aggregator shortcode, everything loads.

    Thanks so much in advance!

    in reply to: Section color background video not loading on 3.2.2 #469720

    Hi Dake,

    Thank you for the suggestions. I¹ve prepared a quick screencast to show you how I am putting in the video. You¹ll notice that even after importing
    the mp4 on my media library, the video is not playing. Is there a setting that i need to activate on my wordpress environment to make the mp4 video play?

    NOTE: the video is 4.7mb

    Thanks,
    -mike

    in reply to: Can't update to 3.2.2 #469114

    Nevermind. Figured it out. Thanks.

    in reply to: Fontello Upload Error – 2nd Font #356882

    Hi Josue,

    I figured out the reason why it’s not working. Apparently it just a matter of making sure that when i export the fonts from fontello, i have to rename it differently. The issue was when i’m exporting the fonts, i didn’t put any custom name in the field hence the .svg file that gets exported defaulted to “fontello” and that’s where the problem begins. The system can’t add another set of fonts that have the same name inside the .svg (xml).

    Please consider this issue resolved! Thanks for all your help!

    in reply to: Fontello Upload Error – 2nd Font #353831
    This reply has been marked as private.
    in reply to: Fontello Upload Error – 2nd Font #353769

    Was this issue solved? I’m having the same issue as Dax. I’m running the latest WP v4.0 and enfold child theme v1.0.
    Tried renaming my zip file to a custom name other than the default and made sure that it’s not the same filename as the one i currently have active but still to no avail.

    Would greatly appreciate if someone can help me on this.
    Thanks!

    in reply to: Error uploading another set of fontello font #353317

    Hi Yigit,

    Thanks for replying quickly. I’ve read the link you’ve provided but that is not the error i’m getting.

    Below is the error i get whenever i tried to upload a new set of fontello fonts.
    “Couldn’t add the font because the server didn’t respond. please reload the page and try again.”

    NOTE: I currently have a fontello font zip file uploaded in the backend already. Just wanted to add more on top of what i currently have right now. Is there a way to merge my existing fontello font with the new set of zip i have?

    Thanks!

    in reply to: having issues with tabs in mobile view #338482
    This reply has been marked as private.
Viewing 19 posts - 1 through 19 (of 19 total)