Forum Replies Created

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • Hi Mike,

    Thank you for taking the time to test the issue on your demo site. Could you please let me know if you were able to identify the specific plugin causing the conflict?

    I also wanted to update you on the progress of my development site. It will be going live shortly, and once it’s live, I will conduct additional measures and thorough testing to address the fullscreen button problem. Rest assured, I will keep you informed.

    Furthermore, I’d like to mention that on my development site (a clone of the live hegedues.de), the fullscreen button appears to be functioning normally. Do you have any spontaneous ideas about what could be causing this? All the plugins, versioning, etc. are the same.

    Thank you once again for your support.

    Best regards,
    Rup

    in reply to: YouTube video throwing error when played in color selection #1279962

    I’m having the same issue on all enfold sites, no matter what version. I did recognize it a few days ago. Since then the background video plays once and ends up showing the same error message as mentioned above.

    Possible, that Youtube changed sth. in their API – maybe? They’ve made several playlistXXX changes on January 28, 2021 and February 9, 2021.

    Hopefully your devs find a solution soon :-)

    Kind regards
    Cedric

    in reply to: portfolio pagination not working – portfolio entries #1262947

    @Nikko awesome news! thx :-)

    @felixl
    : I would love to, but as Nikko already said, the fix will be included properly with the next update :-) Therefore, I would leave the comment in here for possible future requests, but would not spread it further as THE solution. You know what I mean? :-) But I hope the solution Nikko published in the other thread helps you ✌🏼

    Kind regards
    Cedric Esser

    • This reply was modified 3 years, 4 months ago by rup.
    in reply to: portfolio pagination not working – portfolio entries #1262629

    I had the same issue, recognized today. A temporary workaround for me was to write a little jQuery/Javascript code to search for the current pagination position and edit the link to first. With code below, make sure to be inside jQuery(document).ready();

    
    // define variables
    var $this = $(this),
          $pagination = $('.pagination-portfolio .pagination'),
          $pag_link = $pagination.find('a'),
          $pag_current = $pagination.find('.current'),
          $pag_current_text = $pag_current.text();
    
    // check if pagination exists on current page
    if ($pagination.length) {
    	
    	// if pagination exists on current page, search for the current pagination position.
    	// if current position has been found, we search for the sibling which has the current
    	// pagination number in href and replace it with "1"
    	$pag_current.siblings('a[href*="avia-element-paging='+ $pag_current_text +'"]').attr('href', function() {
    		
    		// here it is, where the magic happens
    		this.href = this.href.replace('avia-element-paging='+ $pag_current_text, 'avia-element-paging=1' );
    	});	
    }
    

    I hope the comments help to understand what I do with this little code. For me it totally works for now – but I think this should be fixed properly.

    Greez
    Cedric Esser

    in reply to: Plugin Support #1095648

    Thank you for a canned reply.

    The question is really simple – in terms of programming – and the mentioned function must exist.
    Its nothing to do new or code new. So please read the question again:

    I would simply like to know how to programmatically get the final and completely resolved HTML for a given Post ID

    in reply to: Plugin Support #1095189

    That’s cause of the plugin deletes files (which is basically what it’s intended to do).
    This is a plugin – anyways – we use once a year and remove it in between. But for this one time, it’s extremely useful. So still – an answer would be great.

    in reply to: Submenu not sticky anymore (since 4.5) #1064602

    Hi,

    i think i’ve found it. Check out your demo installation with a BURGER main menu and try again.
    in menu.js there’s this piece of code:

    /**
    					 * If we have burger menu active we ignore sticking submenus
    					 */
    					if( burger_menu.is(":visible") )
    					{
    						this.css({top: 'auto', position: 'absolute'}); fixed = false;
    						return;
    					}

    Is there a possibility you enable the sticky submenu for burger menu too? Or how can i overwrite it? I want to keep theme update safe.

    Best,
    Pat

    in reply to: Enfold live search not compatible with custom roles? #1003558

    Thank you for your reply. We found the issue, it was a redirect code in custom functions.
    *close*

    in reply to: Google Maps issue #998373

    Same issue here with a completely NEW created GOOGLE Account, first project, first API
    (We’re web developers so we know all about the API, there must be an issue with ENFOLD, on other sites where we tested the key it works as excpected)

    in reply to: Custom avia layout builder elements AS PLUGIN #995510

    I also tried the setup after the theme – doesnt work either, any help appreciated

    $plugins_url = plugin_dir_url( __FILE__ );
    
    add_action( 'after_setup_theme', 'loadPlugin' );
    
    function loadPlugin() {	
    
    	add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    	
    }
    
    function avia_include_shortcode_template($paths)
    {
    	array_unshift($paths, $plugins_url.'shortcodes/');
    	return $paths;
    }
    • This reply was modified 5 years, 7 months ago by rup.
    in reply to: PHP Code for getting state of googleMaps Activated or not #994878

    We already solved it.
    Think about adding a shortcode like this into enfold – then users can use enfolds tracking cookie to disable other plugins. No need for an extra piece of software. A few lines and it’s done.

    function googleMapsEnabled( $atts , $content = null ) {
    	if(isset($_COOKIE["aviaPrivacyGoogleMapsDisabled"])) {
    		return '<div id="avia-messagebox-" class="avia_message_box  avia-color-orange avia-size-large avia-icon_select-yes avia-border-  avia-builder-el-3  el_before_av_textblock  avia-builder-el-first"><div class="avia_message_box_content"><span class="avia_message_box_icon" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span><p>'.__("This service uses Google Maps and has been disabled by the user due to selected privacy option.","avia_framework").'</p>
    </div></div>';
    	} else {
    	  return do_shortcode($content);
    	}
    }
    add_shortcode( 'googleMapsEnabled','googleMapsEnabled');

    Usage:
    [googleMapsEnabled] [plugin_shortcode] [/googleMapsEnabled]

    in reply to: GDPR -> Shortcode #994875

    Ok thanks

    • This reply was modified 5 years, 7 months ago by rup.
    in reply to: PHP Code for getting state of googleMaps Activated or not #994861

    I know that you dont have control over other elements. Please read my post again carefully.
    Thats why we will write the custom functionality.

    We only need the name of the function you already must have to check if the enfold flag “Google Map” is set or not programmatically.

    http://setzer.reschundpartner.de/wp-login
    dittrich@reschundpartner
    Dd_7#/ax2!Tg

Viewing 15 posts - 1 through 15 (of 15 total)