Forum Replies Created

Viewing 30 posts - 1,111 through 1,140 (of 9,352 total)
  • Author
    Posts
  • Hi,

    Role Editor unterstützt diese Benutzerberechtigung seit 4.47: https://www.role-editor.com/user-role-editor-pro-version-4-47/

    Changelog: manage_privacy_options (Settings->Privacy), export_others_personal_data (Tools->Export Personal Data), erase_others_personal_data (Tools->Erase Personal Data).

    LG,
    Dude

    in reply to: Custom Advanced Layout Builder Elements #998309

    Hi,

    As far as I can tell, there is no way to have it apply to that specific popup. But…odds are you aren’t going to have more than one on a page at a time.

    Did you try to use the custom css class setting ( https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#turn-on-custom-css-class-field-for-all-alb-elements ) to apply specific css code to th modal popup. I.e. you could apply the css class of the button to the modal popup div, etc.

    Best regards,
    Dude

    in reply to: Custom Advanced Layout Builder Elements #998308

    Hi,

    The parameter self_closing was introduced in 4.2.1 and is required for nested shortcodes. If a shortcode is not considered as nested the parameter is set to “yes” and then the “content” variable is set to null by the framework (see enfold\config-templatebuilder\avia-template-builder\php\shortcode-template.class.php line 606+ for more details). Thank you for your hard work!

    Best regards,
    Dude

    Hi,

    I studied the Weglot documentation and you can use the weglot_get_current_language() function to get the current selected language ( https://developers.weglot.com/integration-guides/wordpress ). 

    You can also use it with widget logic, i.e. I used this conditional now:

    
    'en' == weglot_get_current_language()
    

    and

    
    'es' == weglot_get_current_language()
    

    Best regards,
    Dude

    in reply to: Avia builder doesnt load #998171

    Hi,

    I get following error in the console on the editor page:

    /wp-admin/admin-ajax.php:1 Failed to load resource: the server responded with a status of 403 (Forbidden)

    It seems like something blocks the access to the /wp-admin folder – probably a rule in the htaccess.

    Best regards,
    Dude

    in reply to: Draw Attention Pro and LearnPress -plugins with Enfold? #998168

    Hi,

    Can you please post the password – I didn’t get any e-mail (tbh I’m not sure if the e-mail address even exists).

    Best regards,
    Dude

    in reply to: Instagram #998166

    Hey Dundee,

    No, Enfold does not come with a slider for Instagram images. You can use the instagram widget to display an image gallery (grid) in the sidebar or to embed this grid into the page content.

    You could try a plugin like: https://www.wponlinesupport.com/wp-plugin/instagram-slider-carousel-plus-widget-pro/ to embed a slider for Instagram images.

    Best regards,
    Dude

    Hi,

    No I didn’t – I’d also recommend to allow Google to index the theme files. However if you want to block the access you can use the rule I posted in my last post.

    Best regards,
    Dude

    in reply to: Php Errors and server crash #998161

    Hi,

    If you want to avoid this error you can also create the instagram cache directory manually. Use ftp to connect to your server, go to wp-content/uploads/ and create a new folder called “avia_instagram_cache” (without the quotes). Then set the folder permission of avia_instagram_cache to 777.

    Best regards,
    Dude

    Hi,

    But that also publicly displays the name of our theme which I’d rather not do.

    You could add following rule to the robots.txt:

    
    wp-content/themes/.*
    

    It will exclude all theme folders and you don’t need to reveal the theme folder name (i.e. “enfold”).

    And I’m still curious if you know why this is something that only recently started showing up the past couple months.

    Google indexes all urls, including theme resources like css or js scripts. In fact many experts recommend “don’t block the access to theme files” (i.e. Yoast: https://yoast.com/dont-block-css-and-js-files/ ).

    Best regards,
    Dude

    in reply to: How to show tax rate on page #998150

    Hey FinHenri,

    I can’t provide code or custom templates because this is beyond the scope of our support forum. However you can install a plugin like: https://marketpress.de/shop/plugins/woocommerce-german-market/ to implement tax rates and other features without custom code.

    Best regards,
    Dude

    in reply to: Website is loading slow. Is it the Theme or Plugin? #998145

    Hey bemodesign,

    I analyzed your website with gtmetrix and the main problem is the website size – it’s about 8,5mb which equals 2 or 3 mp3 files! See: https://gtmetrix.com/reports/gpcimultifamily.com/DAu4w9oK

    I’d recommend to compress the images, to reduce the number of files, etc.

    Best regards,
    Dude

    in reply to: Creating a 410.php #998141

    Hey!

    You can try to use the wp_410_response action (plugin action) and the avf_title_tag filter (Enfold title filter) to customize the title tag like:

    
    add_action('wp_410_response','avia_set_410_status', 10);
    function avia_set_410_status()
    {
    	global $avia_config;
    	$avia_config['is_410'] = true;
    }
    
    add_filter('avf_title_tag', 'avia_change_title_tag', 10, 2);
    function avia_change_title_tag($title, $wptitle)
    {
    	global $avia_config;
    	if(!empty($avia_config['is_410']))
    	{
    		$title = '410 – Gone';
    	}
    
    	return $title;
    }
    

    Best regards,
    Peter

    in reply to: Multiple Blogs in Enfold #997984

    Hey!

    It’s required for some features, i.e. the breadcrumb. If you’re on a category page (archive) the breadcrumb will use the blog page as parent.

    Regards,
    Peter

    in reply to: Poor speed #997980

    Hey!

    I analyzed the website with gtmetrix: https://gtmetrix.com/reports/www.olomagic.com/HCWnSCFz and the main problem is the file size of 6mb. Most other issues (Serve resources from a consistent URL, Enable Keep-Alive, Leverage browser caching, etc. ) depend on the google domain (i.e. googlevideo.com) and you can’t solve this on your end (the only solution would be to remove the content completely and to host it on your server).

    If possible try to reduce the file size of the website by removing videos, unnecessary scripts and images.

    Regards,
    Peter

    in reply to: Tab Section doesn´t shift #997958

    Hi,

    I could fix it by adding this code to the child theme:

    
    add_filter('avf_use_standard_lightbox', 'avia_default_lightbox_scripts', 10, 1);
    function avia_default_lightbox_scripts($use_standard_lightbox = '')
    {
    	$use_standard_lightbox = "disabled";
    	return $use_standard_lightbox;
    }
    

    Please test if the tabs work on your end too.

    Best regards,
    Dude

    in reply to: Tab Section doesn´t shift #997957

    Hi,

    I could fix it by adding this code to the child theme:

    
    add_filter('avf_use_standard_lightbox', 'avia_default_lightbox_scripts', 10, 1);
    function avia_default_lightbox_scripts($use_standard_lightbox = '')
    {
    	$use_standard_lightbox = "disabled";
    	return $use_standard_lightbox;
    }
    

    Please test if the tabs work on your end too.

    Best regards,
    Dude

    in reply to: Tab Section doesn´t shift #997956

    Hi,

    I could fix it by adding this code to the child theme:

    
    add_filter('avf_use_standard_lightbox', 'avia_default_lightbox_scripts', 10, 1);
    function avia_default_lightbox_scripts($use_standard_lightbox = '')
    {
    	$use_standard_lightbox = "disabled";
    	return $use_standard_lightbox;
    }
    

    Please test if the tabs work on your end too.

    Best regards,
    Dude

    in reply to: Tab Section doesn´t shift #997955

    Hi,

    I could fix it by adding this code to the child theme:

    
    add_filter('avf_use_standard_lightbox', 'avia_default_lightbox_scripts', 10, 1);
    function avia_default_lightbox_scripts($use_standard_lightbox = '')
    {
    	$use_standard_lightbox = "disabled";
    	return $use_standard_lightbox;
    }
    

    Please test if the tabs work on your end too.

    Best regards,
    Dude

    in reply to: Tab Section doesn´t shift #997954

    Hi,

    I could fix it by adding this code to the child theme:

    
    add_filter('avf_use_standard_lightbox', 'avia_default_lightbox_scripts', 10, 1);
    function avia_default_lightbox_scripts($use_standard_lightbox = '')
    {
    	$use_standard_lightbox = "disabled";
    	return $use_standard_lightbox;
    }
    

    Please test if the tabs work on your end too.

    Best regards,
    Dude

    in reply to: Tab Section doesn´t shift #997953

    Hi,

    I could fix it by adding this code to the child theme:

    
    add_filter('avf_use_standard_lightbox', 'avia_default_lightbox_scripts', 10, 1);
    function avia_default_lightbox_scripts($use_standard_lightbox = '')
    {
    	$use_standard_lightbox = "disabled";
    	return $use_standard_lightbox;
    }
    

    Please test if the tabs work on your end too.

    Best regards,
    Dude

    in reply to: Tab Section doesn´t shift #997952

    Hi,

    I could fix it by adding this code to the child theme:

    
    add_filter('avf_use_standard_lightbox', 'avia_default_lightbox_scripts', 10, 1);
    function avia_default_lightbox_scripts($use_standard_lightbox = '')
    {
    	$use_standard_lightbox = "disabled";
    	return $use_standard_lightbox;
    }
    

    Please test if the tabs work on your end too.

    Best regards,
    Dude

    in reply to: Tab Section doesn´t shift #997951

    Hi,

    I could fix it by adding this code to the child theme:

    
    add_filter('avf_use_standard_lightbox', 'avia_default_lightbox_scripts', 10, 1);
    function avia_default_lightbox_scripts($use_standard_lightbox = '')
    {
    	$use_standard_lightbox = "disabled";
    	return $use_standard_lightbox;
    }
    

    Please test if the tabs work on your end too.

    Best regards,
    Dude

    in reply to: Tab Section doesn´t shift #997950

    Hi,

    I could fix it by adding this code to the child theme:

    
    add_filter('avf_use_standard_lightbox', 'avia_default_lightbox_scripts', 10, 1);
    function avia_default_lightbox_scripts($use_standard_lightbox = '')
    {
    	$use_standard_lightbox = "disabled";
    	return $use_standard_lightbox;
    }
    

    Please test if the tabs work on your end too.

    Best regards,
    Dude

    in reply to: Customize the View of Product Category #997934

    Hey!

    Please try to add following css code to the quick css field:

    
    #top.tax-product_cat .template-shop .page-thumb{
        float: left;
        display: inline;
        margin-right: 20px;
    }
    
    #top.tax-product_cat .template-shop .page-thumb img{
        max-width: 150px;
        max-height: 150px;
    }
    
    #top.tax-product_cat .template-shop .term-description{
        display: inline;
    }
    

    To change the image width/height replace 150px with any other value.

    Regards,
    Peter

    in reply to: Poor speed #997931

    Hi Alejandro!

    Please post your question in our support forum and we’ll help you there: https://kriesi.at/support/

    Best regards,
    Peter

    in reply to: Enfold Theme – I need further assistance #997903

    Hey Kornelia Exner,

    Wenn Du Farbanpassungen, Textanpassungen etc. benötigst, kannst Du dich an unser Kundenforum hier wenden: https://kriesi.at/support/. Dort helfen wir gerne (kostenlos) weiter, sofern es nur kleine CSS-Änderungen sind.

    Sofern weitergehende Anpassungen benötigt werden, schreibe uns bitte eine E-Mail an (Email address hidden if logged out) und wir sehen uns die Sache näher an. Da Günter und ich derzeit eher ausgelastet sind, kann ich nicht versprechen, dass wir den Auftrag annehmen, aber wir sehen uns das Ganze jedenfalls einmal an.

    LG,
    Dude

    in reply to: Youtube via Enfold – GDPR compatible? #997862

    Hi,

    We forwarded the request to our developers.

    Best regards,
    Dude

    Hi,

    Diese Plugins nennt man “floating bar” oder “floating content” Plugins – wie zB https://codecanyon.net/item/advanced-floating-content/9945856?ref=Zweistein – diese ermöglichen Elemente (mit shortcodes oder widgets) losgelöst von anderen Inhalten fixiert darzustellen (zB zwei überlappende Videos: http://codetides.com/advanced-floating-content/floating-content-with-videos/ ). Damit könntet ihr zB auch Newsletter einbetten.

    LG,
    Dude

    in reply to: Using Enfold on a multisite #997853

    Hi,

    Essentially can you use the Enfold theme on a multisite website. For example would I have to create a child theme for each sub-directory (including the main directory to) and what is the easiest way as there are many sub-directories ie would I use the export and import function?

    Each sub-directory is a blog and you should be able to activate a (different) theme for each blog. You could i.e. use the same child theme or even create a different child theme for each blog. If you want to use the same child theme with the same settings for all blogs I’d recommend to set up one blog (activate the child theme, configure it and save the options) and then use the Export/Import features (Enfold > Theme Options > Export/Import) to export/import the settings on other multisite blogs. To export the settings use the “Export Theme Settings File” button and save the configuration file, to import the settings click on the “Import Theme Settings File” button and select the configuration file.

    Best regards,
    Dude

Viewing 30 posts - 1,111 through 1,140 (of 9,352 total)