Forum Replies Created

Viewing 30 posts - 451 through 480 (of 23,923 total)
  • Author
    Posts
  • in reply to: Setting the checkbox on “active” by default #675051

    Hi!

    There’s a bit of a confusion here, the check attribute is used for validation (is_empty, is_number, etc). currently there’s no option to enable pre-checking on checkboxes, but you can modify the source to make it work, look for this line in /framework/php/class-form-generator.php

    if(!empty($_POST[$id])) $checked = 'checked="checked"';
    

    Change it to:

    $checked = 'checked="checked"';
    

    Regards,
    Josue

    in reply to: Contactform is not sending #675045
    in reply to: Custom fonts broken after update #675042

    Hi,

    Looks like it’s working now, i modified the Snippets > Font code (there was a quote issue), regarding the errors, those are coming from this block at the end of the page:

    		<style>
    @font-face {
    font-family: 'caviar_dreamsregular';
    src: url("http://monarchejuice.com/wp-content/themes/enfold/css/caviardreams_regular_macroman/CaviarDreams-webfont.eot");
    src: url("http://monarchejuice.com/wp-content/themes/enfold/css/caviardreams_regular_macroman/CaviarDreams-webfont.eot?#iefix") format("embedded-opentype"),
    	 url("http://monarchejuice.com/wp-content/themes/enfold/css/caviardreams_regular_macroman/CaviarDreams-webfont.woff") format('woff'),
    	 url("http://monarchejuice.com/wp-content/themes/enfold/css/caviardreams_regular_macroman/CaviarDreams-webfont.ttf") format('truetype'),
    	 url("http://monarchejuice.com/wp-content/themes/enfold/css/caviardreams_regular_macroman/CaviarDreams-webfont.svg#caviar_dreamsregular") format('svg');
    	font-weight: normal;
    	font-style: normal;
    }
    </style>
    
    <style>
    @font-face {
    font-family: 'caviar_dreamsbold';
    src: url("http://monarchejuice.com/wp-content/themes/enfold/css/caviardreams_bold_macroman/Caviar_Dreams_Bold-webfont.eot");
    src: url("http://monarchejuice.com/wp-content/themes/enfold/css/caviardreams_bold_macroman/Caviar_Dreams_Bold-webfont.eot?#iefix") format("embedded-opentype"),
    	 url("http://monarchejuice.com/wp-content/themes/enfold/css/caviardreams_bold_macroman/Caviar_Dreams_Bold-webfont.woff") format('woff'),
    	 url("http://monarchejuice.com/wp-content/themes/enfold/css/caviardreams_bold_macroman/Caviar_Dreams_Bold-webfont.ttf") format('truetype'),
    	 url("http://monarchejuice.com/wp-content/themes/enfold/css/caviardreams_bold_macroman/Caviar_Dreams_Bold-webfont.svg#caviar_dreamsregular") format('svg');
    	font-weight: normal;
    	font-style: normal;
    }
    </style>
    

    I don’t know the source of it to be honest.

    Best regards,
    Josue

    in reply to: WP Admin Dashboard Layout Issues on Chrome #675037

    Hi,

    Try disabling CONCATENATE_SCRIPTS by adding this line to wp-config.php:

    define( 'CONCATENATE_SCRIPTS', false );
    

    Best regards,
    Josue

    Hi,

    I’ve tagged Kriesi to this thread, in the meantime you can try modifying the parallax values at js/shortcodes.js, line 1967:

    	$.AviaParallaxElement  =  function(options, element)
    	{
    	...
    	}
    

    Best regards,
    Josue

    in reply to: Where to find latest news widget? #675032

    Hi,

    You need to set a Blog page in Theme Options -> And where do you want to display the Blog?

    Best regards,
    Josue

    in reply to: Footer container width #675031

    Hi,

    You can clear the container paddings with this code (add it to Quick CSS):

    .fullsize .container {
        padding: 0;
    
    }
    .footer_color .container,
    .socket_color .container{
        padding: 0 30px;
    }

    Best regards,
    Josue

    in reply to: Changing site url problem #674966
    in reply to: Breadcrump shows wrong category #674958

    Hi,

    I believe the root of the issue is that the kletterbedarf page is set as the shop base, so the breadcrumb will always show that before any category link.

    Best regards,
    Josue

    in reply to: "Add to cart" button shortcode problem #674936

    Hi,

    The avia_sc_produc_button shortcode is just a wrapper for a WooCommerce function, which only shows an add-to-cart button, one thing you could use is a price shortcode, you can add this to your functions.php:

    function wc_price_func( ) {
    
        $html = '';
    
        if( function_exists( 'wc_get_product' ) ){
             $_product = wc_get_product( get_the_ID() );
             $html = $_product->get_price();
        }
        return $html;
    }
    add_shortcode( 'woocommerce_price', 'wc_price_func' );

    Usage:

    [woocommerce_price]
    

    Best regards,
    Josue

    in reply to: Remove items from Default Sidebars #674929

    Has probado desactivando los plugins? (renombrando wp-content/plugins a wp-content/plugins2)?

    in reply to: Problema al aplicar un Formulario de Contacto #674858

    Hm, fijate la pagina Test que cree, no me sucede lo que describes. Por cierto si deseas usa estos codigos CSS para estilizar el CF7 con los estilos de Enfold:

    .wpcf7-form, .wpcf7-response-output{
      clear:both;
    }
    
    .wpcf7-form-control-wrap {
      display: block !important
    }
    
    .wpcf7-form p br{display:none;}
    .wpcf7-form label {display:block; visibility: visible; position: relative; }
    .wpcf7-form label, .modified_width:before{display:block; visibility: visible; position: relative; margin-bottom: 7px; font-weight: 600;}
    
    .wpcf7-form p{ position: relative; clear:both; float:left; width:100%;}
    .wpcf7-form p.hidden{position: absolute; width:0px; left:0; top:0; }
    .wpcf7-form .form_element_half{width:49.5%; float:left; margin-left:1%; clear:none;}
    .wpcf7-form .form_element_third{width:32.6%; float:left; margin-left:1%; clear:none;}
    .wpcf7-form .form_element_two_third{width:66.4%; float:left; margin-left:1%; clear:none;}
    .wpcf7-form .form_element_fourth{width:24.2%; float:left; margin-left:1%; clear:none;}
    .wpcf7-form .form_element_three_fourth{width:74.8%; float:left; margin-left:1%; clear:none;}
    
    .wpcf7-form .first_form{clear:both;margin-left:0;}
    
    #top .wpcf7-form .wpcf7-text, #top .wpcf7-form .wpcf7-select, #top .wpcf7-form .wpcf7-textarea{
      width:100%;
      margin-bottom:0;
      display:inline;
      min-width:50px;
      padding:13px;
      border-radius: 2px;
    }
    
    #top .wpcf7-form .wpcf7-select{
     -webkit-appearance: none;
     border-radius:0px;
     background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAANCAYAAAC+ct6XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjBBRUQ1QTQ1QzkxMTFFMDlDNDdEQzgyNUE1RjI4MTEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjBBRUQ1QTU1QzkxMTFFMDlDNDdEQzgyNUE1RjI4MTEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGMEFFRDVBMjVDOTExMUUwOUM0N0RDODI1QTVGMjgxMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGMEFFRDVBMzVDOTExMUUwOUM0N0RDODI1QTVGMjgxMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk5mU4QAAACUSURBVHjaYmRgYJD6////MwY6AyaGAQIspCieM2cOjKkIxCFA3A0TSElJoZ3FUCANxAeAWA6IOYG4iR5BjWwpCDQCcSnNgxoIVJCDFwnwA/FHWlp8EIpHSKoGgiggLkITewrEcbQO6mVAbAbE+VD+a3IsJTc7FQAxDxD7AbEzEF+jR1DDywtoCr9DbhwzDlRZDRBgACYqHJO9bkklAAAAAElFTkSuQmCC);
     background-position: center right;
     background-repeat: no-repeat;
     border-radius: 2px;
    }
    
    .wpcf7-form .button {
      margin: 0;
      padding: 16px 20px;
      border-radius: 2px;
      border-bottom-width: 1px;
      border-bottom-style: solid;
      font-weight: normal;
      font-size: 12px;
      min-width: 142px;
      outline: none;
    }
    
    .wpcf7-form p input, .wpcf7-form p textarea, .wpcf7-form p select{
      -webkit-transition: all 0.3s ease-in-out;
      -moz-transition:  all 0.3s ease-in-out;
      transition:     all 0.3s ease-in-out;
    }
    
    #top .wpcf7-form-control-wrap {
      display: block !important
    }
    
    #top .wpcf7-response-output{
      float: left;
      padding: 17px;
      border-width: 1px;
      border-style: dashed;
      margin-left: 0;
    }
    in reply to: Can't get new font Roboto Condensed to show? #674839

    Hi!

    You didn’t close this comment so the code block was part of it:

    /** Adding Google Font by BizDoktor.dk
    

    Correct:

    /** Adding Google Font by BizDoktor.dk **/
    

    I’ve fixed it already and Roboto Condensed should appear and work as expected.

    Cheers!
    Josue

    in reply to: Problema al aplicar un Formulario de Contacto #674530

    Hola,

    ¿Has probado desactivar todos los plugins? ¿nos puedes pasar un acceso de administrador para mirarlo?

    Saludos,
    JOsue

    in reply to: Two buttons in-line in same column in enfold #674501

    Hi,

    text-align: center must be applied to the container:

    .gd-center-buttons {
        text-align: center;
    }

    Best regards,
    Josue

    in reply to: Custom fonts broken after update #674445

    Hi,

    Make sure the files exist:

    http://monarchejuice.com/wp-content/themes/enfold/css/caviardreams_regular_macroman/CaviarDreams-webfont.eot
    

    Or change the URLs to point to the correct location.

    Best regards,
    Josue

    in reply to: Sort Posts by 'ACF' custom field – Date #674444

    Hi,

    Can you post a screenshot or a link to the site? i’d like to see what kind of Blog are you using (as each one uses a different file), i’ll try to replicate your enviroment on my install so i can provide you the precise code.

    Best regards,
    Josue

    in reply to: Sort Posts by 'ACF' custom field – Date #674067

    Hi,

    Sure, basically you need to apply this to /enfold/config-templatebuilder/avia-shortcodes/postslider.php (575):

    $query = array(	'orderby' 	=> 'date',
    								'order' 	=> 'DESC',
    								'paged' 	=> $page,
    								'post_type' => $params['post_type'],
    								'posts_per_page' => $params['items'],
                                    'offset' => $params['offset'],
                                    'post__not_in' => (!empty($no_duplicates)) ? $avia_config['posts_on_current_page'] : array(),
    								'tax_query' => array( 	array( 	'taxonomy' 	=> $params['taxonomy'],
    																'field' 	=> 'id',
    																'terms' 	=> $terms,
    																'operator' 	=> 'IN')));

    Best regards,
    Josue

    • This reply was modified 8 years, 10 months ago by Josue.
    in reply to: Line break not working in widget areas #672952

    Try with this instead:

    #top .widget ul li {
        margin-bottom: 10px;
    }
    in reply to: Line break not working in widget areas #672949

    Try this:

    #top .widget ul li {
        margin: 5px 0;
    }
    in reply to: Line break not working in widget areas #672946

    Hey!

    Try adding this code to the Quick CSS:

    #top .widget ul {
        margin: 15px 0;
    }

    Cheers! 
    Josue

    You are welcome, glad to help :)

    Regards,
    Josue

    in reply to: Gallery size and thumbnail size #672943

    Will check that out.

    in reply to: Sort Posts by 'ACF' custom field – Date #672941

    Hi,

    Can you please create us a WordPress administrator account? post it here as a private reply.

    Regards,
    Josue

    in reply to: Gallery size and thumbnail size #672935

    Hey!

    Try adding this code to the Quick CSS:

    @media only screen and (max-width: 767px) {
        .flex_column {
            padding: 0 !important;
        }
    }

    Cheers! 
    Josue

    in reply to: Using video in Advanced Layer Slider #672931

    Hi,

    Video autoplay on mobile is disabled by mobile browsers due to limited data-usage.

    Best regards,
    Josue

    Hi,

    You may have the borders disabled in the Header settings.

    Best regards,
    Josue

    in reply to: Footer container width #672293

    Hey!

    Try selecting a Boxed layout in Theme options > Layout settings.

    Cheers! 
    Josue

    in reply to: Disable auto generate of images for a folder #672291

    Hi,

    If the plugin didn’t work you can directly hook into Enfold image sizes and disable them:

    function enfold_customization_modify_thumb_size( $size ) {
    	$size['widget'] 			 	= array('width'=>0, 'height'=>0);						
    	$size['square'] 		 	    = array('width'=>0, 'height'=>0);		                 
    	$size['featured'] 		 		= array('width'=>0, 'height'=>0);						
    	$size['featured_large'] 		= array('width'=>0, 'height'=>0);						
    	$size['extra_large'] 		 	= array('width'=>0, 'height'=>0, 'crop' => false);	
    	$size['portfolio'] 		 		= array('width'=>0, 'height'=>0);						
    	$size['portfolio_small'] 		= array('width'=>0, 'height'=>0);						
    	$size['gallery'] 		 		= array('width'=>0, 'height'=>0);						
    	$size['magazine'] 		 		= array('width'=>0, 'height'=>0);						
    	$size['masonry'] 		 		= array('width'=>0, 'height'=>0, 'crop' => false);		
    	$size['entry_with_sidebar'] 	= array('width'=>0, 'height'=>0);		            	
    	$size['entry_without_sidebar']  = array('width'=>0, 'height'=>0);	
    	return $size;	
    }

    Best regards,
    Josue

    in reply to: Sort Posts by 'ACF' custom field – Date #672236

    Hey muschko,

    What element are you using to show the Posts?

    Best regards,
    Josue

Viewing 30 posts - 451 through 480 (of 23,923 total)