Viewing 30 results - 631 through 660 (of 1,622 total)
  • Author
    Search Results
  • #1066773

    Hi,
    Sorry about that, I followed your link and see that the dropdown background color is black with white text, I assume this was to fix the white text issue. To make the text black, add this css:

    
    #top .main_color select {
        color: #000 !important; 
    }

    As for adding a text field after variation choice, please try a plugin such as: Woocommerce Custom Fields For Variation

    Best regards,
    Mike

    #1066652

    Hi All,

    I’ve never been able to reproduce the error on my own to get the card_nonce error. The closest thing I have been able to reproduce is that from time to time, if I’m testing the store when not initially logged in:

    1 – I’ll go to the product page and add to cart. I’ll then click the floating view cart that appears. All is okay here
    2 – In viewing the cart I will ‘Proceed to Checkout’ and the proper fields do show.
    3 – Before editing the fields, I’ll use the ‘Returning User’ button and login to my subscriber or customer account, so no admin access on that one.
    4 – The billing fields and other misc. information will autofill, which is good.
    5 – When selecting the Square payment option then, no ••••• symbols appear in the placeholder. Instead, it’ll just be a solid gray line through all of the credit card information and cannot be edited. A refreshing of the page allowed me to do this, but I’m wondering if it’s a similarly caused issue as the card_nonce seems it could be that way. For one of the customer who did receive the card_nonce error, he described that he never plugged any card information in because it wouldn’t let him. Granted, he is an elderly gentleman, so who knows what other variable could have affected this.

    Thank you in advance for any guidance!

    #1066610

    @mdarwish – Can you be more specific? Do you have the Advanced Custom Fields plugin installed? That’s the only custom field aspect about this add-on. Are you wanting to use custom fields the built-in method? I can try creating a new element to do so.

    #1066476

    Topic: Leave a Reply

    in forum Enfold
    charlescheng719
    Participant

    Hi

    I have posted a news thread on the website – but now when “customer” replies-
    It doesnt request “email address” – but request “website”

    And then when i enter “email address” @ “website” –

    It gives an “ERROR: please filled the required fields (name, email)
    << back

    #1066223

    Hi Pete,

    Go to the page and edit it.
    If gutenberg is enabled: In the upper right corner there are 3 dots click on it then select options then check Custom Fields.
    If classic editor is enabled: In the upper right corner, click Screen Options then check Custom Fields.
    You should see the custom fields at the bottom of the page.

    Best regards,
    Nikko

    #1065816
    This reply has been marked as private.
    #1063598

    Hi all,

    similar behavior over here. The first checkbox regarding GDPR is mandatory. The second Checkbox is optional. None of the other form fields are being sent.
    Ich habe die Datenschutzerklärung gelesen und stimme der Verwendung meiner Daten im Rahmen meiner Anfrage zu.: false
    Ich möchte darüber hinaus regelmäßig per E-Mail über Wildnis in Deutschland informiert werden. Über (Email address hidden if logged out) kann ich diese Zusage jederzeit widerrufen.: false


    @Ismael
    : To avoid spam protection because of user convenience is the way to go then? I think that is not what I as a customer expect from a theme developer. Telling a client the theme developer might consider fixing a spam problem with his contact form is embarrassing. Turning away from your responsibility to fix/optimize the spam protection of Enfold just feels bad. Sorry, but that’s how your response comes across.

    Best,
    Thorsten

    #1062685

    Hello,
    one of our customers is having the same issue: From time to time, the contact form is being send without filling out the defined mandatory fields. We’re using the most recent versions of everything (WordPress, Enfold, Plugins).

    Can you please have a look at this?

    • This reply was modified 6 years, 11 months ago by jochenmaier.
    #1061599

    because all functions which starts with if(!function_exists(‘XXXX’)) can be replaced by a copy in functions.php child-theme

    so here we go – both comes to your child-theme functions.php

    the whole function:

    if(!function_exists('avia_header_setting'))
    {
    	function avia_header_setting($single_val = false)
    	{
    		global $avia_config;
    		if(isset($avia_config['header_settings']) && $single_val && isset($avia_config['header_settings'][$single_val])) return $avia_config['header_settings'][$single_val];
    		if(isset($avia_config['header_settings']) && !$single_val) return $avia_config['header_settings']; //return cached header setting if available
    		
    		$defaults = array(  'header_position' 			=> 'header_top',
    							'header_layout'				=>'logo_left menu_right', 
    							'header_size'				=>'slim', 
    							'header_custom_size'		=>'', 
    							'header_sticky'				=>'header_sticky', 
    							'header_shrinking'			=>'header_shrinking', 
    							'header_title_bar'			=>'',
    							'header_social'				=>'',
    							'header_unstick_top'		=>'',
    							'header_secondary_menu'		=>'', 
    							'header_stretch'			=>'',
    							'header_custom_size'		=>'',
    							'header_phone_active'		=>'',
    							'header_replacement_logo'	=>'',
    							'header_replacement_menu'	=>'',
    							'submenu_visibility' 		=> '',
    							'overlay_style'				=> 'av-overlay-side',
    							'header_searchicon' 		=> true,
    							'header_mobile_activation' 	=> 'mobile_menu_phone',
    							'phone'						=>'',
    							'sidebarmenu_sticky' 		=> 'conditional_sticky',
    							'layout_align_content' 		=> 'content_align_center',
    							'sidebarmenu_widgets' 		=> '',
    							'sidebarmenu_social' 		=> 'disabled',
    							'header_menu_border' 		=> '',
    							'header_style'				=> '',
    							'blog_global_style'			=> '',
    							'menu_display' 				=> '',
    							'alternate_menu'			=> '',
    							'submenu_clone' 			=> 'av-submenu-noclone',
    						  );
    							
    		$settings = avia_get_option();
    		
    		//overwrite with custom fields if they are set
    		$post_id = avia_get_the_id();
    		if($post_id && is_singular())
    		{	
    			$custom_fields = get_post_custom($post_id);
    			
    			foreach($defaults as $key =>$default)
    			{
    				if(!empty($custom_fields[$key]) && !empty($custom_fields[$key][0]) ) 
    				{
    					$settings[$key] = $custom_fields[$key][0];
    				}
    			}
    			
    			//check if header transparency is set to true
    			$transparency = post_password_required() ? false : get_post_meta($post_id, 'header_transparency', true);
    		}
    				
    		$header = shortcode_atts($defaults, $settings);
    		$header['header_scroll_offset'] = avia_get_header_scroll_offset($header);
    		
    		//if sidebar main menu is active set the header accordingly and return the sidebar header
    		if($header['header_position'] != "header_top") return avia_header_setting_sidebar($header, $single_val);
    		//------------------------------------------------------------------------------------------------------
    		//------------------------------------------------------------------------------------------------------
    
    		//if header main menu is above the logo set a var to indicate that and disable transparency and shrinking
    		if( strpos( $header['header_layout'] , 'top_nav_header' ) !== false ) 
    		{
    			$header['header_menu_above'] = true;
    			$header['header_shrinking']  = 'disabled';
    			$transparency = false;
    		}
    		
    		//set header transparency
    		$header['header_transparency'] = "";
    		if(!empty($transparency)) $header['header_transparency'] = 'header_transparency';
    		if(!empty($transparency) && strpos($transparency, 'glass')) $header['header_transparency'] .= ' header_glassy';
    		if(!empty($transparency) && strpos($transparency, 'with_border')) $header['header_transparency'] .= ' header_with_border';
    		if(!empty($transparency) && strpos($transparency, 'hidden')) $header['disabled'] = true;
    		if(!empty($transparency) && strpos($transparency, 'scrolldown')) 
    		{
    			$header['header_transparency'] .= ' header_scrolldown';
    			$header['header_sticky'] = 'header_sticky';
    		}
    		
    		
    		//deactivate title bar if header is transparent
    		//if(!empty($transparency)) $header['header_title_bar'] = 'hidden_title_bar';
    		
    		//sticky and shrinking are tied together
    		if($header['header_sticky'] == 'disabled') { $header['header_shrinking'] = 'disabled'; $header['header_scroll_offset'] =  0; }
    		
    		//if the custom height is less than 70 shrinking doesnt really work
    		if($header['header_size'] == 'custom' && (int) $header['header_custom_size'] < 65) $header['header_shrinking'] = 'disabled';
    		
    		//deactivate icon menu if we dont have the correct header
    		if(strpos(avia_get_option('header_layout'), 'main_nav_header') === false) $header['menu_display'] = "";
    		
    		if($header['menu_display'] == 'burger_menu') { $header['header_menu_border'] = "";}
    		
    		if(avia_is_burger_menu())
    		{
    			$header['header_mobile_activation'] = "mobile_menu_tablet";
    		}
    		
    		//create a header class so we can style properly
    		$header_class_var = array(	'header_position', 
    									'header_layout', 
    									'header_size', 
    									'header_sticky', 
    									'header_shrinking', 
    									'header_stretch', 
    									'header_mobile_activation', 
    									'header_transparency', 
    									'header_searchicon', 
    									'header_unstick_top',
    									'header_menu_border',
    									'header_style'
    								);
    								
    		$header['header_class'] = "";
    		
    		foreach($header_class_var as $class_name)
    		{
    			if(!empty($header[$class_name]))
    			{
    				if($header[$class_name] == "disabled") $header[$class_name] = $class_name."_disabled";
    				$header['header_class'] .= " av_".str_replace(' ',' av_',$header[$class_name]);
    			}
    		}
    		
    		//set manual flag if we should display the top bar
    		$header['header_topbar'] = false;
    		if(strpos($header['header_social'], 'extra_header_active') !== false || strpos($header['header_secondary_menu'], 'extra_header_active') !== false || !empty($header['header_phone_active'])){ $header['header_topbar'] = 'header_topbar_active'; }
    		
    		//set manual flag if the menu is at the bottom
    		$header['bottom_menu'] = false;
    		if(strpos($header['header_layout'],'bottom_nav_header') !== false) 
    		{
    			$header['bottom_menu'] = 'header_bottom_menu_active'; 
    		}
    		else
    		{
    			$header['header_class'] .= " av_bottom_nav_disabled ";
    		} 
    		
    		
    		
    		//header class that tells us to use the alternate logo
    		if(!empty($header['header_replacement_logo']))
    		{
    			$header['header_class'] .= " av_alternate_logo_active"; 
    			if(is_numeric($header['header_replacement_logo']))
    			{ 
    				$header['header_replacement_logo'] = wp_get_attachment_image_src($header['header_replacement_logo'], 'full'); 
    				$header['header_replacement_logo'] = $header['header_replacement_logo'][0]; 
    			}
    		
    		}
    		
    		//header class that tells us to use the alternate logo
    		if(empty($header['header_menu_border']))
    		{
    			$header['header_class'] .= " av_header_border_disabled"; 
    		}
    		
    		
    		$header = apply_filters('avf_header_setting_filter', $header);
    
    		//make settings available globaly
    		$avia_config['header_settings'] = $header;
    		
    		if(!empty($single_val) && isset($header[$single_val])) return $header[$single_val];
    		
    		return $header;
    	}
    }

    to shift then the breadcrump under the first container:

    function change_position(){
    ?>
    <script>
    (function($){
         $('#main .title_container').insertAfter('.html_header_transparency div.avia-builder-el-0');
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'change_position');
    #1059945
    adamghart
    Participant

    I am trying to change the color of the billing details text inside the input fields.

    Regards,
    Adam

    • This topic was modified 6 years, 11 months ago by adamghart.
    #1058380

    Hey connect4consulting,

    You would need to modify the Grid, so you can add the option to load them – most probably from custom fields.Unfortunately, it would require quite some time and customization of the theme to achieve this, so I am sorry to tell you that this is not covered by our support. However, if it’s really important for you to get this done, you can always hire a freelancer to do the job for you :)

    Best regards,
    Basilis

    #1058143
    Onlineplaner
    Participant

    Hi,
    In my page I have a header image placed in a color section with background image, Title and subtitle.
    So that I can reuse the same element I built this header as a page so I can include it as a content element into some of my pages. Now I placed the page title as it is, the subtitle from custom fields. Is there a possibillity to use the post thumbnail or page default image as the background for the color section?
    css or a shortcode?

    Thanks in advance.
    Onlineplaner

    • This topic was modified 6 years, 12 months ago by Onlineplaner.
    #1057387
    conflock
    Participant

    Hi,

    I’m using ACF PlugIn for custom events. What I want is to show future events with the help of a shortcode inside the Avia builder. Unfortunately the loop is always shown at the beginning of the page, not at the position of the shortcode. What am I doing wrong?

    <?php
    
    /* -------------------------------------------------------------
    	SHORTCODE FUTURE EVENTS
    ------------------------------------------------------------- */
    
    function future_events_all_shortcode() {
    
    // Begin Function
    
    $today = current_time('Y-m-d');
    $args = array(
        'post_type' => 'veranstaltungen',
        'posts_per_page' => '20',
        'meta_key'  => 'datum_beginn',
        'order' => 'ASC',
        'orderby' => 'meta_value',
        'meta_query' => array(
          array(
                'key'   => 'datum_beginn',
                'compare' => '>=',
                'value'   => $today,
            	'type' => 'DATETIME'
            ),
        ),
    );
    
    // Format date
    $date = get_field('datum_beginn');
    $date_day = date_i18n("D", strtotime($date));
    $date_day_digit = date_i18n("d", strtotime($date));
    $date_month = date_i18n("M", strtotime($date));
    
     
    $children = new WP_Query($args);
    
    if ($children->have_posts()) :
    	while ($children->have_posts()) : $children->the_post(); $fields = (object) get_fields();
        
        echo '<div class="atomic-events">';
    	    
    	    echo '<div class="atomic-event">';
    	    	
    	    	echo '<div class="event-date">';
    				echo '<div class="event-date-day">', $date_day, '</div>';
    				echo '<div class="event-date-day-digit">', $date_day_digit, '</div>';
    				echo '<div class="event-date-month">', $date_month, '</div>';
    			echo '</div>'; // end event-date
    			
    			echo '<div class="event-text">';			
    				echo '<h1 class="event-title"><a href="' , the_permalink() , '">' , the_title() , '</a></h1>';
    			echo '</div">'; // end event text
    			
    			echo '<div class="event-image">';			
    				echo '<div class="event-image"><a href="' , the_permalink() , '">' , the_post_thumbnail( 'large', array( 'class' => 'img-responsive' ) ) , '</a></div>';
    			echo '</div">'; // end event image
    			
    	    echo '</div>'; // end event
    	
    	echo '</div>'; // end events
    	
     	endwhile; wp_reset_postdata();
    endif;
    
    // End Function
    
    }
    add_shortcode('future_events', 'future_events_all_shortcode');
    #1056384

    @Gitte – I’m still looking into it. The only one of my elements that you can use is the field value one to display a custom field. The others will require the Pro version due to the type of fields they are. To get that one field to at least work, I just gotta figure out the differents in code between acf and acf pro. The ocde I am using right now simply references acf.

    #1056311

    First of all – enfold got a very nice Documentation Page:
    just search f.e.: https://kriesi.at/documentation/enfold/?s=header&numberposts=5&results_hide_fields=

    you will find a lot of code to get custom header styling.

    Then what hook to you used for making the header widget area?

    #1054977

    @kahil as mentioned above the ACF elements of your AddOns cannot be made with the free Advanced Custom Fields plugin? I won’t buy ACF Pro because I do not need that.

    #1053414
    mitiuphoto
    Participant

    hi guys,
    knows anyone of you, if is there a third-party plugin where i have the possibility to filter the enfold portfolio category by name, tags, size, color (color of the pictures after i mark them with additional custom fields) and so on.
    something similar to this very nice product portfolio from this guy here.
    https://mihajlovicnenad.com/product-filter/creative/shop/

    unfortunately this plugin works only with woocommerce. i don´t wont to place every picture as a product to have the ability to sort after than. when you have thousands of pictures, it is very time-consuming with woocommerce. and after than, you dont have the nice lightbox presentation.
    i want to have something clean, like the enfold portfolio now at the moment with the ability to professional sorting.

    thank you guys for all the recommendation.
    cheers.
    lucian
    p.s.
    a lot of stores how sells pictures have the same filter method. but i don´t want to sell the pictures, i just want to have a nice presentation.

    #1052546
    dhfairbairn
    Participant

    I’ve created a custom content part in my child theme, using the Blog Post content part and created a subtly modified part called Resource Part. This lives in /shortcodes/resource with resource.css and resource.php. This is working correctly for me in the Advanced Layout Builder.

    Inside my theme directory, I’ve created a file single-resource.php and it is being accessed correctly to display a page for the resource custom post type.

    I’m trying to create a custom loop file that Resource Part uses instead of the regular blog loop when the Resource Part is used on a Page. I’ve created a file inside /includes called loop-resource.php that is a modified copy of loop-index.php. I’ve changed all instances of where a post_type is defined as a ‘post’ to ‘resource’ (the name of my custom post type).

    In single-resource.php I’ve modified the following: get_template_part( 'includes/loop', 'resource ');

    When I place my new Resource Part content item on a Page using the ALB, is loop-resource.php the file that it’s supposed to be using? I could use some help knowing a few more facts about the file structure.

    I’m trying to create a custom loop for my Resource Part, so I can add custom fields, etc to control its display more granularly than the default Blog post loop. Am I even modifying the right file?

    I’m almost there. Just need a bit more help.

    #1052402

    this here seems to work better: https://wordpress.org/plugins/edit-author-slug/

    you will have then additional fields to customise the permalink structure and the shown name – which is not the loggin User name

    Edit: if you want to create it afterwards – i guess you have to refresh permalinks and edit for each user the account info !

    #1051812
    wpsonja
    Participant

    Hi,
    I found a code snippet here in the forum to add quantity fields on the WooCommere shop pages. This is the link:
    https://kriesi.at/support/topic/add-a-quantity-field-to-woocommerce-products/#post-1008227

    It works when the customer uses + or – to adjust quanitity. But when the customer wants to add a larger amount, it doesn’t work properly. For example when the customer wants to mark the number to enter a new one, an url appears in the field. Do you have a suggestion, how I could fix the problem?

    AND
    How can I change the positioning of the quantity field with CSS?

    It’s a B2B-Shop. You have to use the login credentials in the private content to see the quanity fields on the shop pages.

    Best regards,
    Sonja

    #1051610

    Hey hbourdillon,
    To remove the “website” field, Please add this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    .comment_container p.comment-form-url {
    display: none !important;
    }

    To format the comments fields to look like the ‘Subscribe to Blog’ section, we will first need to hide the labels with this css:

    .comment_container label[for=author],.comment_container label[for=email] {
    display: none !important;
    }

    Then we will need to add the placeholders in the fields, by adding this code to the end of your functions.php file in Appearance > Editor:

    function add_placeholders(){
      ?>
      <script>
      function placeholders() {
      document.querySelector("input#author")
      .setAttribute("placeholder", "Name");
      document.querySelector("input#email")
      .setAttribute("placeholder", "email");
    }
    $(document).ready(placeholders);
      </script>
      <?php
      }
      add_action('wp_footer', 'add_placeholders');

    Here’s the expected results:
    2019-01-09-005324
    After you add this code, Please clear your browser cache.

    Best regards,
    Mike

    #1049949
    nightjar
    Participant

    Dear Sirs,
    Over the years you provided excellent solutions to a series of problems I had with Envato. Now there is one quite hard to solve.
    Recently, a new law in Italy forced to adopt a method to create “electronic invoices”, so we had to install a new custom-made plugin (WooCommerce Fattureincloud Premium) that would send clients’ and orders’ data from WooCommerce to an external service able to generate and handle those “electronic invoices”.
    This plugin adds a series of fields to the “Checkout” basic WooCommerce page, and the problem is that those fields are scattered randomly among the others, instead of being orderly put at the end of the series.
    This problem happens with our Envato theme, while with other themes this won’t happen.
    I have contacted the developer of the plugin, and after a series of unsuccessful modifications, he said it’s a problem of the Envato theme, not his plugin’s.
    In the private content section of this post you will find the login credentials to my site, a couple of screenshots showing the problem and the PHP file modified by the plugin developer that didn’t solve the problem
    Thanks for your help!

    #1049161

    Hi,

    Display the event date as a Meta Tag using custom fields and then add it to widgets would be a good idea.

    I’m unable to test the above code but you may already know that we can display a shortcode for any element in the widget area.

    Please enable debug mode by adding the code provided in this link to your functions.php file which can be accessed from Appearance > Editor

    This lets you view the shortcode for all the page elements. Just copy the element shortcode and paste it in the widget area.

    Best regards,
    Vinay

    #1047329
    carosch
    Participant

    Hello,

    I would like to know how I can add a second third and more level of filter for a filtered portfolio ?

    I usually use categories for a one level filtered portfolio, but, how can I do to use tags as a second level, and eventually custom fields ?

    I need held for my website project with a catalog of services that the visitor can filter to find the service that suits him. These services are classified by:
    – ages of the public
    – thematic
    – techniques used

    So the visitor may search by one two or three filters.

    Thanks
    Caroline

    #1046996

    I can’t create the code at the moment because in a few minutes i have to leave the office to go christmas shopping with the family … :-)

    But here are some notes to the process i would take for your first option (custom fields):
    – create a customized Widget based on the Avia News Widget (class-framework-widgets.php, line 843 ff.)
    – or override it by declaring the class “avia_newsbox” before Enfold does
    – inside the Widget code call the data of the custom fields of each element and add it to the html output

    ———-
    How to create a WordPress Widget:
    => https://www.wpbeginner.com/wp-tutorials/how-to-create-a-custom-wordpress-widget/

    How to get custom field data:
    => https://codex.wordpress.org/Custom_Fields#Getting_Custom_Fields

    #1046980
    Nu-Vision
    Participant

    Dear Support Team,

    I would like the “Latest News Widget” to show the date of upcoming events. (https://imgur.com/a/Tha3bJC) By default it shows the date on which an event (blogpost) was created, but since that was irritating I have hidden it with some custom code. (https://imgur.com/a/3vCoClf)

    .news-time { display: none!important; }

    I have 2 ideas on how to go about this:
    1. Use a Meta Tag from custom fields (https://imgur.com/a/xoWTRAX) and display that in the widget.
    2. Just change the time at which the post was created to the event date.

    What do you think is the best solution (least coding) and how would you go about this?
    Thank you so much and I wish you a nice christmas time!

    Best Regards,
    Jan

    P.S: I cant use the excerpt to display the time, because on the events page i need the automatic, normal excerpts.

    #1042758

    Hi,
    Thank you for the images, if I understand correctly,
    you have a custom post type and the ALB Builder is not showing for it.
    I tested this on my localhost, and see that this was working for WordPress v4.9
    But now not WordPress v5.0
    I found that you had curly quotes in your snippet code that I corrected and now you have the portfolio fields at the bottom of your custom post type:
    2018-12-09-093957

    but you still have no ALB button, I will ask the dev team for advice.

    Best regards,
    Mike

    #1041907
    Snerp
    Participant

    Seems the code you have on this page for the Enfold Mailchimp Newsletter Widget customization is no longer working with the new theme update. https://kriesi.at/documentation/enfold/mailchimp-signup/

    If I add the code below the fields and submit button will no longer work. I have already tried turning off all the plugin and I still see the issue.

    /*Mailchimp Footer Newsletter Formatting*/

    #top .avia_ajax_form.avia-mailchimp-form input[type=’submit’] {
    background: #3d8ee1;
    color: #ffffff;
    border: none;
    }

    #top .avia_ajax_form.avia-mailchimp-form input[type=’text’] {
    background: #383838;
    color: #00334e;
    }

    I managed to change the formatting on my own but felt that the information on the page should be updated.

    #1039321
    André Cuq
    Guest

    Dear Enfold Team, just looking at your demo for the Enfold Hotel Theme and since i don´t have expirience using your themes i got some questions:

    can i also use the layout editor on the single product page of woocommerce moving elements around ( like product name to the top left, making the main image bigger, not displaying some elements and adding other elements like custom fields or ACF , etc .. ) and safe my design as a single product page template ?

    I see on the demo you are using the woocommerce bookings plugin, is this included in the price ?

    can you name me some examples of life web sites using the Enfold Hotel Theme ?

    can you give me one test license to learn to use your theme for a period of one week ?

    Thank you in advance

    Best Regards

    André Cuq

    #1039224

    Hey sdigit,
    Your solution sounds very good, I had thought of using Advanced Custom Fields to create a second title to be shown, but when looking into this it seems like it would be very involved. Another option would be to use jQuery to change to title but you would need to write each one out, which would be just as “hacky”
    So your solution may be best.

    Best regards,
    Mike

Viewing 30 results - 631 through 660 (of 1,622 total)