Viewing 30 results - 2,161 through 2,190 (of 11,217 total)
  • Author
    Search Results
  • #1247560

    Hi devesuki,

    I see, please go to Appearance > Menus, then select Main Menu.
    After it’s selected, go to the bottom near the Save Menu button, check Enfold Main Menu.
    As for the loading time since it’s in localhost, I’m not really sure why that happens since images, js and css files should be loaded locally as well.

    Best regards,
    Nikko

    Hi envato99,

    Can you try to install this plugin: https://envato.com/market-plugin/ and see if it helps with updating.

    If that’s not working then please do this method:

    1. Login to ThemeForest and download the Enfold theme.
    2. Right-click over the downloaded zip file and extract/unzip it.
    3. It should generate a new folder, open it and look for the enfold folder
    4. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip)
    5. Log in to WordPress as Admin and put the site in maintenance mode.
    6. Go to Appearance > Themes.
    7. Switch to a default WordPress Theme like TwentyTwenty and delete Enfold theme.
    8. Click on the ADD NEW button.
    9. Click on the UPLOAD THEME button.
    10. Click BROWSE and choose enfold.zip file
    11. Click the INSTALL NOW button

    Best regards,
    Nikko

    gooflo
    Participant

    Hi,

    is there a possibility to make the pinteres overlay button work also on featured images of posts? I thought it worked before but now not any more.

    I am using “Pin It Button On Image Hover And Post” plugin version 2.7.8, WordPress 5.5.1 and Enfold 4.7.6.3 with PHP 7.2.30-nmm1

    Best regards
    Florian

    • This topic was modified 5 years, 6 months ago by gooflo.
    #1246936

    Ok, I was able to resolve the issue by overriding the set_default_values function in the shortcode class.
    I added the function from enfold/config-templatebuilder/avia-template-builder/php/shortcode-template.class.php

    /**
    		 * helper function executed by aviaShortcodeTemplate::popup_editor that extracts the attributes from the shortcode and then merges the values into the options array
    		 *
    		 * @param array $elements
    		 * @return array $elements
    		 */
    		public function set_default_values($elements)
    		{
    			$shortcode = !empty($_POST['params']['shortcode']) ? $_POST['params']['shortcode'] : '';
    			
    
    			if($shortcode)
    			{
    				//will extract the shortcode into $_POST['extracted_shortcode']
    				$this->builder->text_to_interface($shortcode);
    				
    				//the main shortcode (which is always the last array item) will be stored in $extracted_shortcode
    				$extracted_shortcode = end($_POST['extracted_shortcode']);
    
    				//if the $_POST['extracted_shortcode'] has more than one items we are dealing with nested shortcodes
    				$multi_content = count($_POST['extracted_shortcode']);
    
    				//proceed if the main shortcode has either arguments or content
    				if(!empty($extracted_shortcode['attr']) || !empty($extracted_shortcode['content']))
    				{
    					if(empty($extracted_shortcode['attr'])) $extracted_shortcode['attr'] = array();
    					if(isset($extracted_shortcode['content'])) $extracted_shortcode['attr']['content'] = $extracted_shortcode['content'];
    
    					//iterate over each array item and check if we already got a value
    					foreach($elements as &$element)
    					{
    						if(isset($element['id']) && isset($extracted_shortcode['attr'][$element['id']]))
    						{
    							//make sure that each element of the popup can access the other values of the shortcode. necessary for hidden elements
    							$element['shortcode_data'] = $extracted_shortcode['attr'];
    						
    							//if the item has subelements the std value has to be an array
    							if(isset($element['subelements']))
    							{
    								$element['std'] = array();
    
    								for ($i = 0; $i < $multi_content - 1; $i++)
    								{
    									$element['std'][$i] = $_POST['extracted_shortcode'][$i]['attr'];
    									$element['std'][$i]['content'] = $_POST['extracted_shortcode'][$i]['content'];
    								}
    							}
    							else
    							{
    								$element['std'] = stripslashes($extracted_shortcode['attr'][$element['id']]);
    							}
    
    						}
    						else
    						{
    							if($element['type'] == "checkbox") $element['std'] = '';
    						}
    					}
    				}
    			}
    
    			return $elements;
    		}

    I modified it to be as follows:

        /**
         * helper function executed by aviaShortcodeTemplate::popup_editor that extracts the attributes from the shortcode and then merges the values into the options array
         *
         * @param array $elements
         * @return array $elements
         */
        public function set_default_values($elements)
        {
          $shortcode = !empty($_POST['params']['shortcode']) ? $_POST['params']['shortcode'] : '';
          
    
          if($shortcode)
          {
            //will extract the shortcode into $_POST['extracted_shortcode']
            $this->builder->text_to_interface($shortcode);
            
            //the main shortcode (which is always the last array item) will be stored in $extracted_shortcode
            $extracted_shortcode = end($_POST['extracted_shortcode']);
    
            //if the $_POST['extracted_shortcode'] has more than one items we are dealing with nested shortcodes
            $multi_content = count($_POST['extracted_shortcode']);
    
            //proceed if the main shortcode has either arguments or content
            if(!empty($extracted_shortcode['attr']) || !empty($extracted_shortcode['content']))
            {
              if(empty($extracted_shortcode['attr'])) $extracted_shortcode['attr'] = array();
              if(isset($extracted_shortcode['content'])) $extracted_shortcode['attr']['content'] = $extracted_shortcode['content'];
    
              //iterate over each array item and check if we already got a value
              foreach($elements as &$element)
              {
                if(isset($element['id']) && isset($extracted_shortcode['attr'][$element['id']]))
                {
                  //make sure that each element of the popup can access the other values of the shortcode. necessary for hidden elements
                  $element['shortcode_data'] = $extracted_shortcode['attr'];
                
                  //if the item has subelements the std value has to be an array
                  if(isset($element['subelements']))
                  {
                    $element['std'] = array();
    
                    for ($i = 0; $i < $multi_content - 1; $i++)
                    {
                      $element['std'][$i] = $_POST['extracted_shortcode'][$i]['attr'];
                      $element['std'][$i]['content'] = $_POST['extracted_shortcode'][$i]['content'];
                    }
                  }
                  else
                  {
                    $element['std'] = html_entity_decode(stripslashes($extracted_shortcode['attr'][$element['id']]));
                  }
    
                }
                else
                {
                  if($element['type'] == "checkbox") $element['std'] = '';
                }
              }
            }
          }
    
          return $elements;
        }

    The difference is that I changed this:
    $element['std'] = stripslashes($extracted_shortcode['attr'][$element['id']]);
    to this:
    $element['std'] = html_entity_decode(stripslashes($extracted_shortcode['attr'][$element['id']]));

    and included it in my shortcode element, which is finished below:

    <?php
    /**
     * 2 Column Module
     * 
     * Builds 2 column modules with image on one side and content on the other.
     */
    if ( ! defined( 'ABSPATH' ) ) {  exit;  }    // Exit if accessed directly
    
    if ( ! class_exists( 'avia_sc_two_column_module' ) )
    {
      class avia_sc_two_column_module extends aviaShortcodeTemplate
      {
        /**
         * Create the config array for the shortcode button
         */
        function shortcode_insert_button()
        {
          $this->config['version']    = '1.0';
          $this->config['self_closing'] = 'yes';
    
          $this->config['name']   = __( '2 Column Modules', 'avia_framework' );
          $this->config['tab']    = __( 'Content Elements', 'avia_framework' );
          $this->config['icon']   = AviaBuilder::$path['imagesURL'] . 'sc-blog.png';
          $this->config['order']    = 40;
          $this->config['target']   = 'avia-target-insert';
          $this->config['shortcode']  = 'av_two_column_module';
          $this->config['tooltip']  = __( 'Builds 2 Column Modules ', 'avia_framework' );
          $this->config['preview']  = false;
          $this->config['id_name']  = 'id';
          $this->config['id_show']  = 'yes';
          $this->config['alb_desc_id']  = 'alb_description';
        }
    
        function admin_assets()
        {
          $ver = AviaBuilder::VERSION;
         
        }
    
        function extra_assets()
        {
          wp_enqueue_style( 'two-column-module', get_stylesheet_directory_uri() . '/shortcodes/assets/twocolumnmodule.css', array( 'avia-layout' ), false );
        }
    
        /**
         * helper function executed by aviaShortcodeTemplate::popup_editor that extracts the attributes from the shortcode and then merges the values into the options array
         *
         * @param array $elements
         * @return array $elements
         */
        public function set_default_values($elements)
        {
          $shortcode = !empty($_POST['params']['shortcode']) ? $_POST['params']['shortcode'] : '';
          
    
          if($shortcode)
          {
            //will extract the shortcode into $_POST['extracted_shortcode']
            $this->builder->text_to_interface($shortcode);
            
            //the main shortcode (which is always the last array item) will be stored in $extracted_shortcode
            $extracted_shortcode = end($_POST['extracted_shortcode']);
    
            //if the $_POST['extracted_shortcode'] has more than one items we are dealing with nested shortcodes
            $multi_content = count($_POST['extracted_shortcode']);
    
            //proceed if the main shortcode has either arguments or content
            if(!empty($extracted_shortcode['attr']) || !empty($extracted_shortcode['content']))
            {
              if(empty($extracted_shortcode['attr'])) $extracted_shortcode['attr'] = array();
              if(isset($extracted_shortcode['content'])) $extracted_shortcode['attr']['content'] = $extracted_shortcode['content'];
    
              //iterate over each array item and check if we already got a value
              foreach($elements as &$element)
              {
                if(isset($element['id']) && isset($extracted_shortcode['attr'][$element['id']]))
                {
                  //make sure that each element of the popup can access the other values of the shortcode. necessary for hidden elements
                  $element['shortcode_data'] = $extracted_shortcode['attr'];
                
                  //if the item has subelements the std value has to be an array
                  if(isset($element['subelements']))
                  {
                    $element['std'] = array();
    
                    for ($i = 0; $i < $multi_content - 1; $i++)
                    {
                      $element['std'][$i] = $_POST['extracted_shortcode'][$i]['attr'];
                      $element['std'][$i]['content'] = $_POST['extracted_shortcode'][$i]['content'];
                    }
                  }
                  else
                  {
                    $element['std'] = html_entity_decode(stripslashes($extracted_shortcode['attr'][$element['id']]));
                  }
    
                }
                else
                {
                  if($element['type'] == "checkbox") $element['std'] = '';
                }
              }
            }
          }
    
          return $elements;
        }
        /**
         * Popup Elements
         *
         * If this function is defined in a child class the element automatically gets an edit button, that, when pressed
         * opens a modal window that allows to edit the element properties
         *
         * @return void
         */
        function popup_elements()
        {      
          
          $this->elements = array(
              
            array(
                'type'  => 'tab_container', 
                'nodescription' => true
              ),
                
            array(
                'type'  => 'tab',
                'name'  => __( 'Content', 'avia_framework' ),
                'nodescription' => true
              ),
            array(
                  'type'      => 'template',
                  'template_id' => 'toggle_container',
                  'templates_include' => array(
                              $this->popup_key( 'selected_project' )
                            ),
                  'nodescription' => true
                ),
            
            array(
                'type'  => 'tab_close',
                'nodescription' => true
              ),
             
            array(
                'type'  => 'tab',
                'name'  => __( 'Advanced', 'avia_framework' ),
                'nodescription' => true
              ),
            
              array(
                  'type'  => 'toggle_container',
                  'nodescription' => true
                ),
            
                array(  
                    'type'      => 'template',
                    'template_id' => 'screen_options_toggle'
                  ),
            
                array(  
                    'type'      => 'template',
                    'template_id' => 'developer_options_toggle',
                    'args'      => array( 'sc' => $this )
                  ),
            
              array(
                  'type'  => 'toggle_container_close',
                  'nodescription' => true
                ),
            
            array(
                'type'  => 'tab_close',
                'nodescription' => true
              ),
    
            array(
                'type'  => 'tab_container_close',
                'nodescription' => true
              )
    
              
              
            );
    
        }
        
        /**
         * Create and register templates for easier maintainance
         * 
         * @since 4.6.4
         */
        protected function register_dynamic_templates()
        {
          
          /**
           * Content Tab
           * ===========
           */
          
          $c = array(
                array(
                  'name'  => __( 'Module Content', 'avia_framework' ),
                  'desc'  => __( 'What is the content for this module?', 'avia_framework' ),
                  'id'    => 'module_content',
                  'type'  => 'tiny_mce',
                  'std'   => '',
                ),
                array(
                  'name'  => __( 'Module Image', 'avia_framework' ),
                  'desc'  => __( 'What is image for this module? (Select Large if available, Full Size if Large is not available.)', 'avia_framework' ),
                  'id'  => 'module_image',
                  'type'  => 'image',
                  'title' => __( 'Insert Image', 'avia_framework' ),
                  'button'  => __( 'Insert', 'avia_framework' ),
                  'std' => AviaBuilder::$path['imagesURL'] . 'placeholder.jpg' 
                ),
                array(
                  'name'  => __( 'Image Side?', 'avia_framework' ),
                  'desc'  => __( 'What side of the module will the image be on?', 'avia_framework' ),
                  'id'  => 'image_side',
                  'type'  => 'select',
                  'std'   => 'left',
                  'subtype' => array(
                            __( 'Left', 'avia_framework' ) => 'left',
                            __( 'Right', 'avia_framework' )  => 'right'
                          )
                )
            );
          
          $template = array(
                  array(  
                    'type'      => 'template',
                    'template_id' => 'toggle',
                    'title'     => __( '2 Column Module', 'avia_framework' ),
                    'content'   => $c 
                  ),
              );
          
          AviaPopupTemplates()->register_dynamic_template( $this->popup_key( 'selected_project' ), $template );
          
        }
        /**
         * Editor Element - this function defines the visual appearance of an element on the AviaBuilder Canvas
         * Most common usage is to define some markup in the $params['innerHtml'] which is then inserted into the drag and drop container
         * Less often used: $params['data'] to add data attributes, $params['class'] to modify the className
         *
         *
         * @param array $params this array holds the default values for $content and $args.
         * @return $params the return array usually holds an innerHtml key that holds item specific markup.
         */
        function editor_element( $params )
        {
    
          $params = parent::editor_element( $params );
          $params['content'] = null; //remove to allow content elements
    
          return $params;
        }
    
        /**
         * Frontend Shortcode Handler
         *
         * @param array $atts array of attributes
         * @param string $content text within enclosing form of shortcode element
         * @param string $shortcodename the shortcode found, when == callback name
         * @return string $output returns the modified html string
         */
        function shortcode_handler( $atts, $content = '', $shortcodename = '', $meta = '' )
        {
          global $avia_config, $more;
    
          extract( $atts );
    
          $cards = [];
          
          ob_start(); //start buffering the output instead of echoing it
          $img = wp_get_attachment_image( $attachment, 'large' );
          echo $this->render_module(ShortcodeHelper::avia_apply_autop( ShortcodeHelper::avia_remove_autop( $module_content ) ), $image_side, $module_image, $img);
          $output = ob_get_clean();
          
          avia_set_layout_array();
    
          return $output;
        }
    
        function render_module($content,$image_side,$module_image, $image) {
          $html = '';
          $html .= '<div class="two-column-module '.$image_side.'-side">';
          $html .= '<div class="image-container"><div class="module-image" style="background:url(\''.$module_image.'\'); background-repeat: no-repeat; background-position: center '.$image_side.'; background-size: cover"></div></div>';
          $html .= '<div class="content-container">'.$content.'</div>';
        return $html .= '</div>';
        }
    
       }
      
    }
    

    It also works properly with multiple tiny_mce boxes, too.
    Note – this is only a problem when you create a custom shortcode element and give it an id of something other than ‘content’.

    jamesgeiger
    Participant

    Well this is a strange new problem – the sidebars on most of my site’s pages have disappeared from the right – and now only appear below the main body contact as individual full-width sections! Here’s an example page:

    I went into Enfold and hit the Save button, hoping this would correct the problem but it doesn’t. Additionally, choosing to ‘force’ the right sidebar in each page’s sidebar options doesn’t solve the problem.

    I believe this just started happening with the most recent update of WordPress. The installed version of Enfold is 4.7.6.3, running PHP 7.3.12

    #1246932

    I was able to fix the issue, although I had to hard-code it into the theme file, which I hate doing.

    I added the below code to the enfold/config-templatebuilder/avia-template-builder/php/html-helper-class.php file.
    $element['std'] = html_entity_decode($element['std']);

    You can put it anywhere within the tiny_mce function.

    static public function tiny_mce($element)
    		{
    			//tinymce only allows ids in the range of [a-z] so we need to filter them. 
    			$element['id']  = preg_replace('![^a-zA-Z_]!', '', $element['id']);
    			
    			
    			/* monitor this: seems only ajax elements need the replacement */
    			$user_ID = get_current_user_id();
    			
    			if(get_user_meta($user_ID, 'rich_editing', true) == "true" && isset($element['ajax']))
    			{
    				global $wp_version;
    				
    				//replace new lines with brs, otherwise the editor will mess up. this was fixed with wp 4.3 so only do that in old versions
    				if ( version_compare( $wp_version, "4.3", '<' ) ) 
    				{
    					$element['std'] = str_replace("\n",'<br>',$element['std']);
    				}
    			}
    			
    			$element['std'] = html_entity_decode($element['std']);
    			
    			ob_start();
    	        wp_editor( $element['std'], $element['id'] , array('editor_class' => 'avia_advanced_textarea avia_tinymce', 'media_buttons' => true ) );
    	        $output = ob_get_clean();
    	        
    	        return $output;
    		}

    I haven’t yet found a place where I can override what gets passed into this function as the $element argument, in order to avoid hard-coding it into the file.

    Since I’ve gotten it this far, would it be possible for somebody on the team to possibly figure out how to finish resolving the issue, without having to hard-code it into the theme file?

    #1246829
    samdive
    Participant

    Hi
    I am using latest Enfold and latest WordPress but cannot see any Social Media icons or icons I put on buttons.

    Site is https://www.smartmatching.co.uk/

    Sign in details provided

    Hi CJ,

    Can you try this method:

    1. Login to ThemeForest and download the Enfold theme.
    2. Right-click over the downloaded zip file and extract/unzip it.
    3. It should generate a new folder, open it and look for the enfold folder
    4. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip)
    5. Log in to WordPress as and Admin.
    6. Install and activate this plugin: https://wordpress.org/plugins/update-theme-and-plugins-from-zip-file/
    7. Go to Appearance > Themes.
    8. Click on the ADD NEW button.
    9. Click on the UPLOAD THEME button.
    10. Click BROWSE and choose enfold.zip file
    11. Click the INSTALL NOW button

    Best regards,
    Nikko

    #1246747

    In reply to: Update Version

    Hi rachelryerson,

    I apologize for that, please do the following (make sure to have a backup first):

    1. Login to ThemeForest and download the Enfold theme.
    2. Right-click over the downloaded zip file and extract/unzip it.
    3. It should generate a new folder, open it and look for the enfold folder
    4. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip)
    5. Log in to WordPress as and Admin.
    6. Install and activate this plugin: https://wordpress.org/plugins/update-theme-and-plugins-from-zip-file/
    7. Go to Appearance > Themes.
    8. Click on the ADD NEW button.
    9. Click on the UPLOAD THEME button.
    10. Click BROWSE and choose enfold.zip file
    11. Click the INSTALL NOW button

    Best regards,
    Nikko

    #1246745

    Hi James,

    Please do the following (make sure to have a backup first):

    1. Login to ThemeForest and download the Enfold theme.
    2. Right-click over the downloaded zip file and extract/unzip it.
    3. It should generate a new folder, open it and look for the enfold folder
    4. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip)
    5. Log in to WordPress as and Admin.
    6. Install and activate this plugin: https://wordpress.org/plugins/update-theme-and-plugins-from-zip-file/
    7. Go to Appearance > Themes.
    8. Click on the ADD NEW button.
    9. Click on the UPLOAD THEME button.
    10. Click BROWSE and choose enfold.zip file
    11. Click the INSTALL NOW button

    Best regards,
    Nikko

    #1246733

    Hi Hugo_R,

    Please go to Enfold > Import/Export > Iconfont Manager, then click on Upload/Select Fontello Font Zip button then upload the font in private content.

    Best regards,
    Nikko

    Hey pathemeforestnet,

    Please try the following in Quick CSS under Enfold->General Styling:

    .woocommerce-product-search button {
        background: #000;
        padding: 10px;
    }

    Best regards,
    Rikard

    #1246595

    Topic: Another facetwp issue

    in forum Enfold
    interfacemedia
    Participant

    Hi there

    Been a few years since i last posted. I am running enfold 4.7.6.1 and everything appears fine up until you select a facet on the left hand nav. Once selected the quantity buttons disappear (+/-)

    https://jaycor.staging.wpengine.com/products/
    Before selecting a facet
    Before selecting a facet
    http://ibb.co/XX35yPf

    After
    After selecting a facet
    http://ibb.co/CBBDQhk

    I did check with the plugin developer and their response was :

    It looks like those + / – buttons are loaded by JS on page load rather than being in the HTML, so whatever that JS is needs to be re-run on facet’s refresh when filters are selected.

    Since this is usually theme or plugin specific, it would help if you would also ask your theme’s support.

    Here is the explanation you can share with them from our docs:

    Some plugins and themes use JavaScript to modify the layout, load images, or apply animation effects. Some examples include masonry layouts, isotope, image lazy loading, and sliders. These scripts run on page load, but do not usually run after each FacetWP ajax refresh, meaning that they’ll likely need to be manually re-triggered within a facetwp-loaded event.

    Ask their support what JavaScript from their theme (or plugin) is needed to re-trigger the layout.

    Please can you assist?

    Hi Marcel,

    Can you try this method of updating Enfold:

    1. Login to ThemeForest and download the Enfold theme.
    2. Right-click over the downloaded zip file and extract/unzip it.
    3. It should generate a new folder, open it and look for the enfold folder
    4. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip)
    5. Log in to WordPress as and Admin.
    6. Install and activate this plugin: https://wordpress.org/plugins/update-theme-and-plugins-from-zip-file/
    7. Go to Appearance > Themes.
    8. Click on the ADD NEW button.
    9. Click on the UPLOAD THEME button.
    10. Click BROWSE and choose enfold.zip file
    11. Click the INSTALL NOW button

    Best regards,
    Nikko

    #1246520
    dase_es
    Participant

    Good morning Enfold Team,

    I have a problem applying a discount coupon. At the moment I enter the coupon code and click on Apply coupon button (Aplicar cupon) it ejects from the cart page
    The coupon is applied correctly but this error forces to go an enter to the shopping cart page again.
    How can I solve that?
    I do not know if it is related to the code change I made recently to display the cart icon on the mobile:

    @media only screen and (max-width: 1024px) {
    #menu-item-shop {
    display: block !important;
    }
    }
    @media only screen and (max-width: 430px) {
    #menu-item-shop .cart_dropdown_link {
    padding-right: 0 !important;
    }
    #header_main .av-logo-container {
    margin: 0 !important;
    width: 95% !important;
    max-width: 95% !important;
    }
    }

    I’ve seen I have the same problem if I change the Shipping Address and click Update button. I’m expelled from the cart page too.

    Thank you in advance.

    • This topic was modified 5 years, 6 months ago by dase_es.
    #1246448

    Topic: Read more blog Enfold

    in forum Enfold
    premiumpsu
    Participant

    Hello!

    I update the enfold theme, and the button ob read more of blog have been desapeared.

    I can’t finde the option “Title + excerp + read more link”

    thanks

    Hi werner0347verizon,

    I apologize I forgot that other methods of updating should be used.
    Please do the following:

    1. Login to ThemeForest and download the Enfold theme.
    2. Right-click over the downloaded zip file and extract/unzip it.
    3. It should generate a new folder, open it and look for the enfold folder
    4. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip
    5. Log in to WordPress as and Admin.
    6. Install and activate this plugin: https://wordpress.org/plugins/update-theme-and-plugins-from-zip-file/
    7. Go to Appearance > Themes.
    8. Click on the ADD NEW button.
    9. Click on the UPLOAD THEME button.
    10. Click BROWSE and choose enfold.zip file
    11. Click the INSTALL NOW button

    Best regards,
    Nikko

    pathemeforestnet
    Participant

    Hi,

    I need help changing Enfold shop search button to black (like the online demo).
    It is the submit button under “Search Products”.

    I don’t understand why the imported demo doesn’t look like the online demo in some details.
    I am tired of spending time searching for small changes, just to get the online demo appearance that I was supposed to get automatically.

    Can somebody help?

    Hi Stephen,

    Go to Enfold > Theme Update, there’s should be the button to update there.
    If none, then most likely you’ll need to Enter a valid Envato private token.

    Best regards,
    Nikko

    #1246169

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    .archive .add_to_cart_button {
        float: none;
        display: table;
        margin: 0 auto;
    }

    Best regards,
    Rikard

    AstridBerkhout
    Participant

    Hi,

    I have updated enfold and after that I have the same problem as onesmile https://kriesi.at/support/topic/no-space-characters-in-headlines-buttons/#post-1245829. There are no space characters possible in all the headlines, buttons and textfields images.

    Best regards,
    Astrid

    #1245848

    In reply to: Button Row

    Hey Manuela,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .av_textblock_section .avia-buttonrow-wrap.avia-buttonrow-center {
        margin: 0 auto;
        width: 90%;
    }
    

    Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look?

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1245833

    In reply to: change linkedin icon

    Hey jelle,

    You need to upload your own custom icon and add the code to your functions.php.

    Here are the docs for you:

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1245822

    Hi MPPcreative,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    #top .wc-proceed-to-checkout .button {
        color: #000;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1245740

    Hi Rikard,

    I have updated enfold and after that I have the same problem. There are no space characters possible in all the headlines, buttons and textfields images.

    Best regards,
    Astrid

    #1245726

    BTW the W3TCache plugin doesn’t change the rest of your htaccess. The reason why I am saying is that in the htaccess, I have manually specified some minification settings etc. So it makes sense that enabling/disabling this from within Enfold or W3TC won’t make a difference. Anyway, I manually purged Redis & Varnish but this doesn’t seem to make a difference.

    Can’t we specify something in the Quick CSS settings to verify that this pushed through (or not)?
    When I update a page, these changes are visible. I.e. on the homepage, I updated a button and the change is displayed correctly.

    Cheers,
    Dimitri

    #1245508
    heufti65
    Participant

    Hi, we have inserted the enfold contact form on the page, but the form ist not shwoing exactly on mobile phones. The bottom with the sendig button is missing. What could be the problem? We have enough space under the button …

    #1245379

    Hi MPPcreative,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
     div .main_color .button[type="submit"] {
         color: #000;
     }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1245195
    rixi
    Participant

    Hi,
    could somebody tell me if it is possible to put the send button from the enfold contact formular beside another button so that i have three buttons in a row ?
    It should make the box smaller?

    many greetings rixi

    #1245188

    Hi BlueSolution,
    Try to use this plugin https://wordpress.org/plugins/update-theme-and-plugins-from-zip-file/ and do the following steps:

    1. Make sure this plugin is installed and activated.
    2. Download zip file of your theme’s most recent version.
    3. Log in to WordPress as and Admin and go to Appearance > Themes.
    4. Click on the ADD NEW button.
    5. Click on the UPLOAD THEME button.
    6. Click BROWSE and choose your zip file you downloaded.
    7. Click the INSTALL NOW button.

    If it fails for some reason, you can do manual updating via FTP: https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp (I would suggest via cPanel since FTP is slow)
    Let us know if it helps.

    Best regards,
    Nikko

Viewing 30 results - 2,161 through 2,190 (of 11,217 total)