Forum Replies Created

Viewing 30 posts - 1 through 30 (of 23,923 total)
  • Author
    Posts
  • De nada.

    Un saludo,
    Josue

    Hola,

    Usa este código (borra el anterior):

    .tax-product_cat .template-shop .content .entry-content-wrapper {
        display: flex;
        flex-flow: row wrap;
    }
    
    .tax-product_cat .template-shop .content .entry-content-wrapper .term-description{
        order: 3;
    }

    Saludos,
    Josue

    • This reply was modified 7 years, 5 months ago by Josue.
    in reply to: Adding shortcode to Excerpt in the Portfolio Page #704511

    Hi!

    Shortcode should appear now, i’ve modified the following file:

    /enfold/config-templatebuilder/avia-shortcodes/portfolio.php
    

    You can move that modification to your child theme by doing the following:

    Regarding the subject, i’ve added a parameter to the custom shortcode, so you can specifiy it:

    [my_shortcode title='Something']
    

    Regards,
    Josue

    in reply to: Adding shortcode to Excerpt in the Portfolio Page #704109

    Hi!

    The shortcode is working but i think the reason you’re not seeing the link is because it’s set to a white color by this code in style.css:

    .main_color a, .main_color a:hover {
    	color: #fff;
    	font-weight:normal;
    }

    Cheers!
    Josue

    in reply to: Adding shortcode to Excerpt in the Portfolio Page #703474

    Hey!

    The WordPress access (kibantiques) provided is not working, please check.

    Regards,
    Josue

    in reply to: "Submit" button analytics #695493

    Hi,

    On a code block below the form.

    Best regards,
    Josue

    in reply to: After update, can no long edit pages or run Updraft Plus #694806

    Hi,

    Try it now.

    Best regards,
    Josue

    in reply to: Microsoft Edge #694124

    Hi,

    I’d say it’s something in your end, i just checked it on mine (Win 10 / Edge) and noted no issue, can you try this demo site and check if the issue occurs?
    http://kriesi.at/themedemo/?theme=angular

    Best regards,
    Josue

    in reply to: Microsoft Edge Browser erkennen ?? #694123

    Hi,

    The images used in that page don’t exist:

    http://www.chung-gun-hammersbach.de/wp-content/uploads/2016/08/Chrome.jpg
    

    Best regards,
    Josue

    in reply to: Edge Browser and Blog Layout Preview Image #694122

    Hey,

    Try installing this plugin:
    https://wordpress.org/plugins/disable-responsive-images/

    Best regards,
    Josue

    in reply to: How to make enfold french #694120

    Hi,

    can you give us superadmin access or FTP?

    Best regards,
    Josue

    in reply to: Cross sell items not showing up when viewing item #694118

    Hi,

    Can you please check if the issue persists with the default WordPress theme activated?

    Regards,
    Josue

    in reply to: avia-slideshow-controls #694117

    Hi,

    Try placing the code at the very top of Quick CSS.

    Best regards,
    Josue

    in reply to: Superfly Menu #694116

    Hi,

    Seems to be working on the site you posted, either way i’d suggest contacting them too.

    Best regards,
    Josue

    in reply to: How to make enfold french #694115

    Hi,

    Can you try fr-FR instead of ca-FR (you can change that in WordPress multisite).

    Best regards,
    Josue

    Hi,

    Can you post the link to your website please?

    Regards,
    Josue

    in reply to: Stop slideshow for 10 seconds on mouseclick #694112

    Hey,

    Open js/shortcodes.js and scroll down to line 4314, under _bindEvents place this code (after variables declarations):

        		this.$slider.on('click', function(){
        			$.proxy( this.pause, this) );
        			setTimeout(function(){
        				$.proxy( this.resume, this);
        			}, 10000);
        		});

    Best regards,
    Josue

    Hey Bill,

    You could wrap the filter code with:

    if(is_page('2')){
    ..
    }

    So it runs only on a specific Page.

    Best regards,
    Josue

    in reply to: How to make enfold french #694109

    Hi,

    The reason you’re seeing most of the stuff in English is because the French version of the site is set to English (‘en-CA’). Change that in General Settings.

    Best regards,
    Josue

    Hi,

    Looks like you managed to get it working with custom CSS, the height seems unchanged but that’s because of these spacing elements – http://screencast.com/t/lXY9UwLm5r

    Best regards,
    Josue

    in reply to: After update, can no long edit pages or run Updraft Plus #694105

    Hi!

    Please add this line to wp-config.php:

    define('CONCATENATE_SCRIPTS', false);
    

    FTP access provided is not properly set (points to empty directory).

    Regards,
    Josue

    in reply to: Quantity Multipliers Dissapear On Pagination Links #694101

    Hi,

    Open /config-woocommerce/woocommerce-mod.js and look for line:

    $( document ).on( 'updated_cart_totals', avia_apply_quant_btn );
    

    Replace it by this:

    $( document ).on( 'updated_cart_totals', avia_apply_quant_btn );
    $( document ).on( 'facetwp-refresh', avia_apply_quant_btn );
    

    Regards,
    Josue

    in reply to: Slider with thumbnail nav #694097

    Hey,

    There’s no Enfold element to replicate that but have you tried the included LayerSlider plugin?

    Best regards,
    Josue

    in reply to: Home page movement #694096

    Hi!

    Can you post a screenshot of what you’re referring to?

    Regards,
    Josue

    in reply to: Invisible (transparent) headlines #694092

    Hey,

    I’d suggest skipping jQuery from your deferring script:

    add_filter('clean_url','async_js',11);
    function async_js($url) {
          if ( false !== strpos( $url, 'jquery.js' ) || false === strpos( $url, '.js' )) {
              return $url;
          }
          return "$url' defer='defer";        
    } 
    

    Although it’s possible to make it work it’s a little bit too complicated and not something we can assist.

    Best regards,
    Josue

    in reply to: Overlay gallery images #694090

    Hey Chris,

    Go to Theme Options and uncheck the Enfold included lightbox script (“Lightbox Modal Window”).

    Best regards,
    Josue

    in reply to: Contact form Mail User #694087

    Hi,

    Paste this code in Quick CSS:

    .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;
    }
    

    Then wrap your CF7 fields similar to:

    
    <div class="av-form-labels-visible">
    <p class="first_form form_element form_element_third">
    <label>Your Name:</label>
    [cf field]
    
    <p class="form_element form_element_third">
    <label>Email address: </label>
    [cf field]
    
    <p class="form_element form_element_third modified_width">
    [cf submit]
    
    </div>
    

    Best regards,
    Josue

    • This reply was modified 7 years, 6 months ago by Josue.
    in reply to: Video clip background before load content #694085

    Hey,

    You could use a popup video that runs on page load:

    <a href='video url here' id='pop-me'>Video</a>
    

    PHP/JS:

    function add_custom_script(){
    ?>
    <script>
    (function($){
        $("#pop-me").trigger('click');
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_script');

    Best regards,
    Josue

    in reply to: Clarify the loading of custom Google Fonts #694084

    Hi,

    Can you post a link to a Page where this occur? i can’t reproduce the issue in any of my installations.

    Best regards,
    Josue

    in reply to: url from http to https #694074

    Hi,

    Links set manually would need to be changed manually, if you’re using dynamic linking though it should change automatically.

    Best regards,
    Josue

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