Forum Replies Created

Viewing 30 posts - 1,651 through 1,680 (of 9,352 total)
  • Author
    Posts
  • in reply to: Tabellenformatierung #986004

    Hi,

    Könntest du mir bitte einen Admin Account anlegen – dann sehe ich mir den derzeitigen CSS Code an und modifiziere diesen falls nötig.

    Best regards,
    Dude

    in reply to: Privacy policy message messing with my form layout #986001

    Hi,

    Yes, there’s an option to center the buttons/form: http://www.clipular.com/c/6052388138647552.png?k=OZPZpNkOrQaAUkAfLixk0trFfbk

    Best regards,
    Dude

    in reply to: wholesale theme #986000

    Hey Peter Brazier,

    One thing I’m not sure about is how the shop aspect would work as their site needs account login (as mine will). But the things is the items for wholesale need to be displayed in either rows of all sizes for a product (S,M,L etc) or even size x colour grid.

    1) Yes this should be possible – you can use variable products ( https://docs.woocommerce.com/document/variable-product/ ) which are fully supported by Enfold.

    Also my current site is not WordPress – I think it is VSASP based ? – but wondering if there is any service you can offer to convert and host the site and leave me with the content to load up – or can you recommend a developer familiar with your themes/

    Unfortunately we can’t recommend a certain developer. However I’m pretty sure you can hire a freelancer here: https://codeable.io/

    Best regards,
    Dude

    in reply to: Preloader on WooCommerce Checkout #985994

    Hi,

    You can use a service like: https://imgur.com/upload and just post the link/url.

    Best regards,
    Dude

    Hi,

    You can translate the caption of the privacy checkbox without third party plugins – just go to the theme option panel (Enfold > Theme Optionen > Privacy and Cookies) and search for the “Message below template builder contact forms” option field (should be the third option field from the top). There you can replace the default text:

    
    I agree to the terms and conditions laid out in the [av_privacy_link]Privacy Policy[/av_privacy_link]
    

    with any other text like:

    
    Ich stimme der Speicherung und Verarbeitung meiner Daten durch diese Website gemäß [av_privacy_link]Datenschutzerklärung[/av_privacy_link] zu.
    

    Best regards,
    Dude

    in reply to: Preloader on WooCommerce Checkout #985980

    Hi,

    Can you please post your current css/preloader code? Also please make a screenshot which helps us to check why the preloader doesn’t look good or fit with the theme.

    Best regards,
    Dude

    in reply to: noindex on tags #985976

    Hey Richard,

    Please add this code to your child theme functions.php file:

    
    add_filter('avf_set_follow','avia_remove_nofollow', 10, 1);
    function avia_remove_nofollow($meta){
    return "";
    }
    

    It will remove the default meta tag and it’s up to your seo plugin to set the right tag(s).

    Best regards,
    Dude

    in reply to: Info request #985975

    Hey Roberto!

    In general we do not give discounts because we think the price is already fair. Sometimes Themeforest/Envato features sales and we join these sales (i.e. “Black friday sale, etc.”). You can wait for the next sale (we’ve no ETA) or you can purchase the theme for the regular price. Personally I wouldn’t wait because the price difference is low and often only 10% or so.

    Best regards,
    Peter

    in reply to: Custom Advanced Layout Builder Elements #985759
    This reply has been marked as private.

    Hi,

    I’d recommend Sensei: https://woocommerce.com/products/sensei/ which works with Enfold if you use a child theme with custom templates (you can download the templates here: https://ufile.io/yqgob – just unpack the folder into the child theme folder). However note that not all theme features (advanced layout builder, page styling options) will work with Sensei cause the plugin loads templates which do not support the advanced layout builder.

    Best regards,
    Dude

    in reply to: protected login area #985756

    Hey DianaLoola73,

    You could use a password protected page and the gallery element to build a press area. If you want to use more advanced options (membership area, different types of members, etc.) or if you want to add big image galleries (100+ images) I’d suggest to use third party plugins like NextGen Gallery and s2Member

    Best regards,
    Dude

    in reply to: German version of cookie info #985754

    Hey diefleischerei,

    No, there’s no official German version. However you can use a service like https://datenschutz-generator.de/ to generate sample legal text snippets. 

    Best regards,
    Dude

    in reply to: Yoast sitemap. #985750

    Hi,

    This seems to be a ssl issue. The index sitemap is loaded over https:

    https://philippine-diver.com/sitemap_index.xml

    However the sitemap contains only http:// urls (i.e. http://philippine-diver.com/post-sitemap.xml ) – this seems to be a bug of the yoast plugin.

    If I change the http protocol to https manually the sitemap url works: https://philippine-diver.com/post-sitemap.xml

    My suggestions would be:

    1) Try to install a plugin like https://de.wordpress.org/plugins/really-simple-ssl/
    2) If no. 1 doesn’t fix the issue add this code to the htaccess file:

    
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{HTTPS} off
    RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
    </IfModule>
    Header set Strict-Transport-Security "max-age=31536000" env=HTTPS
    

    It will redirect all http:// requests to https://

    3) Report this bug to the Yoast SEO devs: https://wordpress.org/support/plugin/wordpress-seo

    Best regards,
    Dude

    in reply to: Block theme and framework url from SERP #985748

    Hey afektomer,

    I’d suggest to read these guides: https://yoast.com/ultimate-guide-robots-txt/ and https://yoast.com/wordpress-robots-txt-example/ (also see https://yoast.com/robots.txt). Afaik it’s not recommended to block the access to /wp-content/themes/enfold/* folders however this code should work:

    
    User-Agent: *
    Disallow: /wp-content/themes/enfold/?*
    

    You need to place the robots.txt file to the wordpress root directory (where the wp-content, wp-includes, etc. folders are located). There’s no other easy solution to block search engines yet.

    Best regards,
    Dude

    in reply to: Send filled in contact form via E-mail #985746

    Hey Jillian,

    Please add this code to your child theme functions.php:

    
    add_filter('avf_form_custom_autoresponder', 'avia_custom_autoresponder', 10, 4);
    function avia_custom_autoresponder($autoresponder, $message, $class, $new_post)
    {
    	$message = "
    
    <strong>" . __('Your Request:','avia_framework') . " </strong>
    
    ";
    
    	foreach($class->form_elements as $key => $element)
    	{
    		if(isset($element['id'])) $key = $element['id'];
    
    		$key = avia_backend_safe_string($key, '_', true);
    
    		if(empty($key) || !empty($class->form_params['numeric_names']) )
    		{
    			$iterations++;
    			$key = $iterations;
    		}
    
    		// substract 5 characters from the string length because we removed the avia_ prefix with 5 characters at the beginning of the send() function 
    		$key = avia_backend_truncate($key, $class->length - 5, "_", "", false, '', false);
    
    		$key .= $class->id_sufix;
    
    		if(!empty($new_post[$key]))
    		{
    			if($element['type'] != 'hidden' && $element['type'] != 'decoy')
    			{
    				if($element['type'] == 'textarea') $message .= "
    ";
    				$field_value = apply_filters( "avf_form_mail_field_values", nl2br(urldecode($new_post[$key])), $new_post, $class->form_elements, $class->form_params, $element, $key );
    				$message .= $element['label'].": ".$field_value."
    ";
    				if($element['type'] == 'textarea') $message .= "
    ";
    			}
    		}
    	}
    
    	$message .= 'FINAL TEXT';
    
    	$autoresponder = $message;
    
    	return $autoresponder;
    }
    

    You can replace the text strings “Your Request:” and “FINAL TEXT” with some custom text.

    Best regards,
    Dude

    in reply to: Add shortcode just before "read more" #985735

    Hey elvirais,

    You can add this code to the child theme functions.php:

    
    add_filter( 'post-format-standard', 'avia_read_more_filter', 10, 1 );
    add_filter( 'post-format-gallery', 'avia_read_more_filter', 10, 1 );
    add_filter( 'post-format-video', 'avia_read_more_filter', 10, 1 );
    add_filter( 'post-format-image', 'avia_read_more_filter', 10, 1 );
    add_filter( 'post-format-link', 'avia_read_more_filter', 10, 1 );
    add_filter( 'post-format-quote', 'avia_read_more_filter', 10, 1 );
    add_filter( 'post-format-audio', 'avia_read_more_filter', 10, 1 );
    
    function avia_read_more_filter($current_post)
    {
    	if(!is_singular())
    	{
    		$current_post .= do_shortcode('[MYSHORTCODE value="1" value2="2"]');
    	}
    
    	return $current_post;
    }
    
    

    and replace [MYSHORTCODE value=”1″ value2=”2″] with your shortcode. Make sure the parameters of the shortcode are wrapped into “” quotes.

    Best regards,
    Dude

    in reply to: Privacy policy message messing with my form layout #985703

    Hey dcashion,

    This is not possible out of the box and would require some hacking. The submit button is always the last input field and it’s not possible to display another field – i.e. the privacy policy message – below the submit button without code customization. Personally I’d set the width of the three fields to 1/3 and the privacy policy message and the submit button width to fullwidth.

    Best regards,
    Dude

    in reply to: MP4 and WebM in FullScreen Slider for Enfold theme #985698

    Hey posterscope,

    If you embed a .mp4 video the video player will automatically check if a .ogv and .webm video is available and embed them if it’s possible and necessary. You can’t set these videos manually, just make sure that the file names match (i.e. example.mp4, example.ogv, example.webm, etc.)

    Best regards,
    Dude

    in reply to: GDPR Checkbox in Woocommerce Account page not included #985694

    Hey OSTstudio,

    Please add this code to your child theme functions.php file:

    
    
    add_action( 'woocommerce_login_form', 'av_woo_privacy_login_extra' , 10 , 2 );
    function av_woo_privacy_login_extra( $form )
    {
    	$content = do_shortcode( avia_get_option('privacy_message_login') );
    	if(empty($content)) $content = do_shortcode(avia_get_option('privacy_message'));
    	$extra_class = 'forgetmenot';
    
    	$output = '
    <p class="comment-form-av-privatepolicy '.$extra_class.'">
    				<input id="comment-form-av-privatepolicy" name="comment-form-av-privatepolicy" type="checkbox" value="yes">
    				<label for="comment-form-av-privatepolicy">'.$content.'</label>
    
    ';
    
    	echo $output ;
    }
    

    This bug will be fixed with the next theme update.

    Best regards,
    Dude

    in reply to: Woocommerce double pricing 2018 #985691

    Hey Robert,

    I fixed it – I added this code to the custom css field:

    
    #top .price small.woocommerce-price-suffix {
    display: none;
    }
    

    Best regards,
    Dude

    in reply to: License Details? #985690

    Hey Johan,

    You need a “Regular license” for each client website/project. If you use a wordpress multisite installation you need a license for each wordpress instance which runs Enfold.

    Best regards,
    Dude

    in reply to: All My Pages Disappeared #985688

    Hi!

    I logged in and it seems like 243 pages are restored now. Maybe it was a database issue and wordpress failed to load the pages from the database (due to slow database server, high traffic/work load, etc.).

    Best regards,
    Peter

    in reply to: . #985687

    Hi,

    I’ll close this thread because I see no question or comment. Please create a new thread if you need further help.

    Best regards,
    Dude

    in reply to: Tabellenformatierung #985686

    Hallo,
    Der Grund warum .left td hier funktioniert hat ist, dass die Klasse “left” zur Tabelle hinzugefügt wurde und das Element td auch in der Tabelle enthalten war. Die Struktur ist daher vereinfacht:

    
    <table class="left">
    <tr>
    <td>ZAM Z2</td>
    <td>+13.2%</td>
    <td>+32.5%</td>
    <td>+5.8%</td>
    </tr>
    </table>
    

    Der Code “.left td” selektiert richtig alle td Elemente dieser Tabelle. Wenn das “Benutzerdefinierte CSS Klasse”-Feld mit einer Klasse befüllt wird, macht die Klasse “left td” keinen Sinn, da der Browser diese als zwei Klassen interpretiert (CSS Selektor wäre dann .left.td td, weil “left td” die Klassen wären und td das zu selektierende Element der Tabelle). Es reicht also, nur “right” einzutragen – dann funktioniert der Code:

    
    #top .avia-data-table.right td {
    text-align: right !important;
    color:#55524e !important;
    font-size: 16px !important;
    line-height: 26px !important;
    }
    
    #top .avia-data-table.right tr td {
    text-align: right !important;
    }
    
    #top .avia-data-table.right tr td:first-child, #top .avia-data-table.right td:first-child {
    width: 200px !important;
    min-width: 200px !important;
    text-align: left !important;
    }
    

    Wie ich mir die Sache auf der Website letztens angesehen habe stand in den “Benutzerdefinierte CSS Klasse”-Felder der Tabellen “left td” oder “right td” – daher mein Hinweis, dass das Leerzeichen keinen Sinn macht und nur “left_td” oder “right_td” eine valide Klasse wäre. Natürlich kann man einfach nur “right” und “left” schreiben (wie im Code Beispiel oben).

    Best regards,
    Dude

    in reply to: Contact Form Policy Rejection #985676

    Hi,

    I think Victoria referred to the code snippet:

    
     function change_cf_from() {
        return " (Email address hidden if logged out) ";
    }
    add_filter('avf_form_from', 'change_cf_from', 10);
    

    Replace (Email address hidden if logged out) with the wordpress’s defined default email sender address and add this code to the child theme functions.php file. The contact form will then use the default email sender address and not the customer email address. This should solve your problem.

    Best regards,
    Dude

    in reply to: Performance optimizacion #985674

    Hi!

    Enfold does not merge all js/css files to avoid incompatibility issues with third party plugins. You can install a cache plugin like Borlabs Cache (free or paid) or Comet Cache (free or paid) to merge and compress all js/css files and to generate static/cached html files of your website to speed it up. However please be careful – always test your website after you changed the cache plugin configuration – some cache plugin settings might not be compatible with your other plugins.

    Cheers!
    Peter

    in reply to: Editus (formerly Lasso) and Enfold #982561

    Hey perihelionweb,

    We didn’t test both plugins with Enfold. Both plugins seem to be complex (front-end editor, multimedia elements, etc.) and I guess they’re not (fully) compatible with Enfold. I’ll leave this thread open – maybe another user can give you some hints.

    Best regards,
    Dude

    in reply to: PHP Errors… we closed the thread too early… #982548

    Hi,

    You can ignore this warning – it seems like the sql server timed out and wordpress could not connect to it. It has nothing to do with the theme or akismet per se.

    Best regards,
    Dude

    in reply to: Shortcode conflicts #982540

    Hey WEBCREATIVI,

    Probably the avia_woocommerce_overwrite_catalog_ordering() function (enfold/config-woocommerce/config.php on line 1407+) overwrites the shortcode parameters. But you can deactivate it – just add this code to your child theme:

    
    add_action( 'init', 'remove_avia_woocommerce_overwrite_catalog_ordering', 10);
    function remove_avia_woocommerce_overwrite_catalog_ordering() {
    		remove_action( 'woocommerce_get_catalog_ordering_args', 'avia_woocommerce_overwrite_catalog_ordering', 20);
    	}
    
    

    Best regards,
    Dude

    in reply to: Header Logo Is Disrupting SSL #982527

    Hi,

    I fixed it. I simply replaced the logo url with https://www.envisionwellness.co/wp-content/uploads/2018/07/Envision-Wellness-Logo.jpg (https://.. instead of http://&#8230;)

    Best regards,
    Dude

Viewing 30 posts - 1,651 through 1,680 (of 9,352 total)