Forum Replies Created

Viewing 30 posts - 8,311 through 8,340 (of 23,923 total)
  • Author
    Posts
  • in reply to: halve visual of text and image #396859

    Hey!

    Should look fine now, check it.

    Best regards,
    Josue

    in reply to: Accordion not closing #396849

    Hey!

    Try adding this at the very end of your theme / child theme functions.php file:

    function enq_jquery() {
    	wp_enqueue_script('jquery');
    	wp_enqueue_script('jquery-ui-core');
    }
    add_action('wp_enqueue_scripts', 'enq_jquery');

    Cheers!
    Josue

    in reply to: Share buttons in single AJAX #396818

    Si, paso a cerrar el tema, un gusto poder ayudado :)

    Saludos,
    Josue

    in reply to: halve visual of text and image #396809

    Hi Miranda!

    Looks good now, i just cleared the WP Super Cache.

    Regards,
    Josue

    in reply to: Share buttons in single AJAX #396795

    Hola,

    Lo que pasa es que en ese portfolio item esta activado el Editor Avia de Plantillas, por eso no salen los botones de forma automatica, añade esto a functions.php del child theme:

    add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1);
    function avia_add_social_toolbar_template_builder($content = "")
    {
    	if(is_singular('portfolio')){
    		$content .= do_shortcode('[shareaholic app="share_buttons"]');
    	}
    	return $content;
    }

    Eso hará que los botones salgan después del contenido de cada portfolio item (con ALB activado), si quieres tener mas control de donde salen tendrías que hacerlo manualmente en el editor mismo – http://screencast.com/t/xtwZkVzfaxQR

    Saludos,
    Josue

    in reply to: disable stack columns below 767px #396789

    Hi!

    Add this code to Quick CSS:

    @media only screen and (max-width: 767px) {
    
      .responsive #top.page-id-x .container .av-content-small, .responsive #top.page-id-x #wrap_all .flex_column, .responsive #top.page-id-x #wrap_all .av-flex-cells .no_margin {
        margin: 0;
        margin-bottom: 20px;
        width: 100%;
      }
      
    }

    Change “x’ by the ID of the page you want to affect.

    Best regards,
    Josue

    in reply to: Add Categories to Magazine blog list #396788

    Hi!

    OK, ignore the CSS part, just make that part of the magazine.php code like this:

    			$magazine_category = get_the_category($entry->ID);
    			$output .= 		"<div class='av-magazine-content-wrap'>";
    			$output .=		"<header class='entry-content-header'>";
    			$output .=			"<time class='av-magazine-time updated' {$markupTime}>".$time."</time>";
    			$output .=			$separator.$author_output." / ".$magazine_category[0]->name;
    			$output .=			"<{$titleTag} class='av-magazine-title entry-title' {$markupTitle}>{$title}</{$titleTag}>";
    			$output .= 		"</header>";
    if($excerpt)$output .=		"<div class='av-magazine-content entry-content' {$markupContent}>{$excerpt}</div>";
    			$output .= 		"</div>";
    			$output .= 		"<footer class='entry-footer'></footer>";
    			$output .= "</article>";
    

    Regards,
    Josue

    in reply to: Add Categories to Magazine blog list #396543
    in reply to: Apache/PHP Error logs #396538

    Hey!

    Try adding this at the very end of your theme / child theme functions.php file:

    add_theme_support('avia_no_session_support');
    

    Cheers!
    Josue

    in reply to: halve visual of text and image #396518

    Hey Miranda!

    Please update the theme to the latest version (3.0.8).

    Best regards,
    Josue

    in reply to: Share buttons in single AJAX #396511

    Ya, chequealo ahora. Modifique includes/loop-portfolio-single.php, puse una condicional para que si existe contenido normal lo muestre, de lo contrario que muestre el contenido Ajax, también añadí los share links de Shareaholic en ambos casos.

    in reply to: Share buttons in single AJAX #396499

    Pásame un admin y una cuenta FTP (ponlo en respuesta privada).

    in reply to: Disable html auto correction for text editor #396498

    Hey!

    Try using the editor in Text mode only, also you can disable the Visual Editor in Users > Your Profile.

    Cheers!
    Josue

    in reply to: halve visual of text and image #396455

    Hi Miranda,

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

    Regards,
    Josue

    in reply to: Share buttons in single AJAX #396454

    El contenido del Gist debe ir en includes/loop-portfolio-single.php y si, tienes que replicar la misma estructura. Sobre lo de hacerlo con los botones de Jetpack no creo que sea posible, ya que hasta donde se no se pueden insertar via shortcode.

    Saludos,
    Josue

    in reply to: Put Enfold Post layout options into LearnDash post #396453

    Hey!

    You’d need to place it manually in the Advanced Layout Builder (http://screencast.com/t/Voo9unvetu). Also, add this to Quick CSS to hide the automatic insertion by the plugin (only on ALB-enabled courses):

    .single-sfwd-courses  #main > .learndash > #learndash_course_status {
        display: none !important;
    }

    Best regards,
    Josue

    in reply to: Share buttons in single AJAX #396449

    Pues si, tienes razón en eso, cuando le den clic se van a ir a la publicación individual y solo verán la imagen, sin embargo hay una forma de hacer que el contenido Ajax aparezca allí de forma automatica:

    1. Copia los siguientes archivos al child theme:

    • single-portfolio.php
    • includes/loop-portfolio-single.php

    2. Abre loop-portfolio-single.php (en el child theme) y reemplaza todo el contenido por esto.

    Sobre los share links me parece que Shareaholic podría funcionar, instálalo y en la linea 725 de portfolio.php pon:

    $output .= do_shortcode('[shareaholic app="share_buttons" link="'.$link.'" title="'.$entry->post_title.'"]');
    

    Saludos,
    Josue

    in reply to: Custom form fields width and Submit button #396442

    Hi!

    You need to the put this code somewhere in your Quick CSS or child theme style.css (i noted JS code there, remove it):

    .mc4wp-form form{margin:0!important;clear:both}
    .mc4wp-form p br{display:none}
    .mc4wp-form label{display:block;visibility:visible;position:relative;margin-bottom:7px;font-weight:600}
    .mc4wp-form p{position:relative;clear:both;float:left;width:100%}
    .mc4wp-form p.hidden{position:absolute;width:0;left:0;top:0}
    .mc4wp-form .form_element_half{width:49.5%;float:left;margin-left:1%;clear:none}
    .mc4wp-form .form_element_third{width:32.6%;float:left;margin-left:1%;clear:none}
    .mc4wp-form .form_element_two_third{width:66.4%;float:left;margin-left:1%;clear:none}
    .mc4wp-form .form_element_fourth{width:24.2%;float:left;margin-left:1%;clear:none}
    .mc4wp-form .form_element_three_fourth{width:74.8%;float:left;margin-left:1%;clear:none}
    .mc4wp-form .first_form{clear:both;margin-left:0}
    @media only screen and (max-width: 479px) { .responsive .mc4wp-form .form_element{width:100%;clear:both;margin-right:0;margin-left:0;float:none} }
    #top .mc4wp-form input[type='text'],#top .mc4wp-form input[type='email'],#top .mc4wp-form select,#top .mc4wp-form textarea{width:100%;margin-bottom:0;display:inline;min-width:50px;padding:13px;border-radius:2px}
    #top .mc4wp-form select{-webkit-appearance:none;border-radius:0;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}
    .mc4wp-form .button{margin:0;padding:16px 20px;border-radius:2px;border-bottom-width:1px;border-bottom-style:solid;font-weight:400;font-size:12px;min-width:142px;outline:none}
    .mc4wp-form .modified_width .button{width:100%;padding:13px 10px 14px;min-width:0}
    .mc4wp-form p input,.mc4wp-form p textarea,.mc4wp-form p select{-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;transition:all .3s ease-in-out}

    Also make sure to have set this in the mc4wp Form options.

    Best regards,
    Josue

    in reply to: Full width masonry gallery with fixed main content #396440

    Hi!

    Put the Masonry in a Color Section (with a custom ID), then add this to Quick CSS:

    #custom_id_color_section .container {
    max-width: 100%;
    }

    Cheers!
    Josue

    in reply to: Responsive issues #396436

    Hey Steve!

    There are two options:
    1. Make the mobile menu appear sooner (overlap seems to occurs around 1200px):

    @media only screen and (max-width: 1200px) {
        .html_mobile_menu_tablet .main_menu , .html_mobile_menu_tablet #header_main_alternate{display:none;}
        .html_mobile_menu_tablet .container #advanced_menu_toggle, .html_mobile_menu_tablet #advanced_menu_hide{display:block;}
        .html_mobile_menu_tablet #mobile-advanced{display:block;}
    }

    2. Reduce the logo dimensions from 1200px until the 989px (where the mobile menu appears):

    @media only screen and (min-width: 989px) and (max-width: 1200px) {
        .logo{
            top: 25px;
            width: 30%;
        }
    }

    Cheers!
    Josue

    in reply to: My Home page malfunction with 3.0.8 version #396414

    Hola,

    Disculpa la demora, ya debería verse bien, por favor revísalo en mobiles, cambié un par de cosas en el Quick CSS, también lo ordené un poco :)

    Saludos,
    Josue

    in reply to: Get images to look like in PSD file #396305

    Hey!

    Add !important:

    .sd_column_3{
    margin: 0% !important;
    }

    And add this push the first one if you want:

    .first.sd_column_3{
    	margin-left: 6% !important;
    }

    Regards,
    Josue

    in reply to: Share buttons in single AJAX #396298

    Hola,

    ¿Tienes este código en el functions.php del child theme?

    <?php
    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
    	$template_url = get_stylesheet_directory();
        	array_unshift($paths, $template_url.'/shortcodes/');
    
    	return $paths;
    }

    A lo que me refería con lo que no iba a funcionar era a los share links de Enfold, por eso consideré que seria mejor usar un plugin, sobre lo del contenido no creo que sea necesario pasarlo al contenido normal si es que siempre se vas a mostrarlo via Ajax y no directamente (cuando se comparte un post el contenido no se toma en cuenta, solo el titulo, el link y la imagen para mostrar).

    Saludos,
    Josue

    in reply to: Search Tool in bar #396292

    Hi @samcking!

    Use this code:

    #top #s {
        background: white;
        color: red;
    }

    Best regards,
    Josue

    in reply to: Menu #396290

    You are welcome Richard, always glad to help :)

    Regards,
    Josue

    in reply to: Share buttons in single AJAX #396217

    Hola,

    Si, eso es una limitación, los Widgets asi como los Menus se tienen que re-configurar cada vez que se cambia de theme.

    Sobre como tener un elemento ALB modificado en un child theme:
    http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/

    Saludos,
    Josue

    in reply to: Change menu css to show tabs on chosen menu item? #396213

    You are welcome, glad to help :)

    Regards,
    Josue

    in reply to: How to change buttons CSS? #396211

    Hey!

    At the end, below of:

    @import url(“../enfold/style.css”);
    

    Regards,
    Josue

    in reply to: Menu #396122

    Hi Richard!

    Change it to:

    .av-main-nav > li > a{
        padding: 0;
    }
    .av-main-nav > li:hover > a .avia-menu-text {
        padding: 3px 6px;
        margin: 0 10px;
    }
    .av-main-nav > li:hover > a .avia-menu-text {
        background: white;
        color: red;
    }
    .av-main-nav > li:hover > a .avia-menu-text, .av-main-nav > li.current-menu-item > a .avia-menu-text {
        border-bottom: 1px solid red
    }
    .avia-menu-fx{
        display: none;
    }

    Cheers!
    Josue

    in reply to: halve visual of text and image #396099

    Hey!

    The background gets rescaled so it can fill the whole size of the container and keep its natural aspect ratio at the same time, you can change that behavior with the following code:

    @media only screen and (max-width: 767px) {
        .avia-full-stretch {
            background-size: 100% 100% !important;
        }
    }

    That will make the image look like this:
    http://screencast.com/t/1FPCJlFUVdo0

    Alternatively you can use this:

    @media only screen and (max-width: 767px) {
        .avia-full-stretch {
            background-size: contain !important;
        }
    }

    That will keep the aspect ratio of the image but it won’t be able to fill the whole container size:
    http://screencast.com/t/rjzx219mK

    Here’s a more graphical explanation:

    Regards,
    Josue

Viewing 30 posts - 8,311 through 8,340 (of 23,923 total)