Viewing 30 results - 139,231 through 139,260 (of 142,715 total)
  • Author
    Search Results
  • #164393

    Hello penullar!

    Please see this topic https://kriesi.at/support/topic/kriesi-logo/#post-161892

    Regards,
    Yigit

    Hello Eleina_Shinn!

    You can try forcing it by adding !important ie ” top: 150px!important ”
    And you are currently using Enfold version 1.8.4. Recently version 2.2 released and since 1.8.4 many bugs are fixed and improvements have done. I would recommend you to updae your theme
    For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750

    Best regards,
    Yigit

    azulbambu
    Participant

    ¿How can i move the full screen slider to top(backward the menu) through adding a css class line to the element in the avia page builder?
    http://awesomescreenshot.com/0351qm0b60

    I tried that adding this css line to general settings: .fixed_header #main{ padding-top:0px; } But now the full screen slider is not a full screen slider.
    http://awesomescreenshot.com/0821qlzx6b

    this is what i need: http://awesomescreenshot.com/0f61qm0ld4

    #164325

    Hello!

    Inspect the “Home” menu using Google Chrome’s Inspect element then look for the unique menu id. It will look something like this:

    <li id=”menu-item-755″ class=”menu-item menu-item-type-custom menu-item-object-custom current-menu-ancestor current-menu-parent active-parent-item dropdown_ul_available”>

    Menu ID is #menu-item-755.

    You can add something like this on your custom.css or Quick CSS:

    #menu-item-755 > a {
    text-indent: -9999px;
    background: url('ICON IMAGE URL HERE') no-repeat top center;
    width: 30px;
    height: 30px;
    }

    Width and height will depend on the icon image size.

    Cheers!
    Ismael

    #164324
    allegrabillings
    Participant

    Hey guys, I know this has been asked before but I am still having trouble after looking over different solutions. I want to make the iconbox icons themselves link not just the heading in the box (the default behavior)

    I saw one solutions that made the whole box a link, which I don’t want.

    then I saw this from dude
    https://kriesi.at/support/topic/icon-box-icon-link/

    and that is what I tried. But it isn’t working. and I can’t figure out how to impliment it. I am using a child theme and this is a bit new for me in changing this type of code. I have only modified some of the functions behaviors and css thus far.

    I changed the code per dudes instructions and them I placed the entire iconbox.php file in my child folder and that didn’t work. then because I didn’t know how to deploy the change I tried to add just the new code to functions.php

    Can you please tell me what if anything is wrong with my code in the iconbox.php file and then how/where to place it in my child themes folder.
    Thanks

    ps. line 172 is where the change started, but I guess you can’t see that obviously. but gives general location.
    website is http://jackandaddi.com/ and there are some icon boxes on the home screen.

    <?php
    /**
    * Textblock
    * Shortcode which creates a text element wrapped in a div
    */

    if ( !class_exists( 'avia_sc_icon_box' ) )
    {
    class avia_sc_icon_box extends aviaShortcodeTemplate
    {
    /**
    * Create the config array for the shortcode button
    */
    function shortcode_insert_button()
    {
    $this->config['name'] = __('Icon Box', 'avia_framework' );
    $this->config['tab'] = __('Content Elements', 'avia_framework' );
    $this->config['icon'] = AviaBuilder::$path['imagesURL']."sc-icon_box.png";
    $this->config['order'] = 90;
    $this->config['target'] = 'avia-target-insert';
    $this->config['shortcode'] = 'av_icon_box';
    $this->config['tooltip'] = __('Creates a content block with icon to the left or above', 'avia_framework' );
    }

    /**
    * 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(
    "name" => __("IconBox Icon",'avia_framework' ),
    "desc" => __("Select an IconBox Icon bellow",'avia_framework' ),
    "id" => "icon",
    "type" => "iconfont",
    "font" => "entypo-fontello",
    "folder"=> AviaBuilder::$path['assetsURL']."fonts/",
    "chars" => AviaBuilder::$path['pluginPath'].'assets/fonts/entypo-fontello-charmap.php',
    "std" => "1"),

    array(
    "name" => __("Icon Position", 'avia_framework' ),
    "desc" => __("Should the icon be positioned at the left or at the top?", 'avia_framework' ),
    "id" => "position",
    "type" => "select",
    "std" => "left",
    "subtype" => array( __('Left', 'avia_framework' )=>'left',
    __('Top', 'avia_framework' )=>'top')),

    array(
    "name" => __("Title",'avia_framework' ),
    "desc" => __("Add an IconBox title here",'avia_framework' ),
    "id" => "title",
    "type" => "input",
    "std" => __("IconBox Title",'avia_framework' )),

    array(
    "name" => __("Title Link?", 'avia_framework' ),
    "desc" => __("Do you want to apply a link to the title?", 'avia_framework' ),
    "id" => "link",
    "type" => "linkpicker",
    "fetchTMPL" => true,
    "std" => "",
    "subtype" => array(
    __('No Link', 'avia_framework' ) =>'',
    __('Set Manually', 'avia_framework' ) =>'manually',
    __('Single Entry', 'avia_framework' ) =>'single',
    __('Taxonomy Overview Page', 'avia_framework' )=>'taxonomy',
    ),
    "std" => ""),

    array(
    "name" => __("Open in new window", 'avia_framework' ),
    "desc" => __("Do you want to open the link in a new window", 'avia_framework' ),
    "id" => "linktarget",
    "required" => array('link', 'not', ''),
    "type" => "select",
    "std" => "no",
    "subtype" => array(
    __('Yes', 'avia_framework' ) =>'yes',
    __('No', 'avia_framework' ) =>'no')),

    array(
    "name" => __("Content",'avia_framework' ),
    "desc" => __("Add some content for this IconBox",'avia_framework' ),
    "id" => "content",
    "type" => "tiny_mce",
    "std" => __("Click here to add your own text", "avia_framework" )),
    );

    }

    /**
    * 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)
    {
    $icon_el = $this->elements[0];

    $chars = $icon_el['chars'];

    if(!is_array($chars))
    {
    include($icon_el['chars']);
    }

    $display_char = isset($chars[($params['args']['icon'] - 1)]) ? $chars[($params['args']['icon'] - 1)] : $chars[0];

    $inner = "<div class='avia_iconbox avia_textblock avia_textblock_style'>";
    $inner .= " <div ".$this->class_by_arguments('position' ,$params['args']).">";
    $inner .= " <span data-update_with='icon_fakeArg' class='avia_iconbox_icon avia-font-".$icon_el['font']."'>".$display_char."</span>";
    $inner .= " <div class='avia_iconbox_content_wrap'>";
    $inner .= " <h4 class='avia_iconbox_title' data-update_with='title'>".html_entity_decode($params['args']['title'])."</h4>";
    $inner .= " <div class='avia_iconbox_content' data-update_with='content'>".stripslashes(wpautop(trim(html_entity_decode($params['content']))))."</div>";
    $inner .= " </div>";
    $inner .= " </div>";
    $inner .= "</div>";

    $params['innerHtml'] = $inner;
    $params['class'] = "";

    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 = "")
    {
    extract(shortcode_atts(array('title' => 'Title', 'icon' => '1', 'position' => 'left', 'link' =>'', 'linktarget' => 'no'), $atts));

    $icon_el = $this->elements[0];

    $chars = $icon_el['chars'];
    $font = $icon_el['font'];
    if(!is_array($chars))
    {
    include($icon_el['chars']);
    }

    $display_char = isset($chars[($icon - 1)]) ? $chars[($icon - 1)] : $chars[0];
    if($position == 'top') $position .= " main_color";

    $linktarget = ($linktarget == 'no') ? '' : 'target="_blank"';
    $link = aviaHelper::get_url($link);
    if(!empty($link))
    {
    $title = "$title";
    }

    // add blockquotes to the content
    $output = '<div class="iconbox iconbox_'.$position.' '.$meta['el_class'].'">';
    $output .= '<div class="iconbox_content">';

    /* commented out the below line wich is default, icon box heading only is the link, and replaced the new code that makes the icon itself a link as well below the lomented out line
    $output .= '<div class="iconbox_icon heading-color avia-font-'.$font.'">'.$display_char.'</div>';*/
    if(!empty($link))
    {
    $output .= "";
    $output .= '<div class="iconbox_icon heading-color avia-font-'.$font.'">'.$display_char.'</div>';
    $output .= '
    ';
    }
    else
    {
    $output .= '<div class="iconbox_icon heading-color avia-font-'.$font.'">'.$display_char.'</div>';
    }
    $output .= '<h3 class="iconbox_content_title">'.$title."</h3>";
    $output .= ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop( $content ) );
    $output .= '</div></div>';

    return $output;
    }

    }
    }

    #164313

    In reply to: menu text position

    Hello!

    Please add this on your custom.css or quick CSS:

    .avia-menu-fx {
    bottom: 19px;
    }
    
    .main_menu ul {
    position: relative;
    top: 20px;
    }
    
    .main_menu .menu ul {
    margin-top: -21px;
    }

    Regards,
    Ismael

    #164309

    Hello!

    Please add following code to Quick CSS and adjust as desired

    .fixed_header #main { padding-top: 66px; }

    By default it is 88px

    Regards,
    Yigit

    #164307
    sofiawolters29
    Participant

    Hello,

    I have followed the tutorial here to add the author to the blog grid:

    https://kriesi.at/support/topic/change-meta-on-grid-blog-posts/

    However, if you click on the author link, it does not link properly. I would like it to link to the author/user’s archive, such as http://jamesattorneymarketing.com/author/lwilson/.

    It seems to be defaulting to “James Publishing Staff” and pulling up a 404.

    Here is our blog grid: http://jamesattorneymarketing.com/education/

    Any ideas? Thanks!

    #164284
    erantdo
    Participant

    Hi,
    Regarding this issue: https://kriesi.at/support/topic/removing-highlight-in-the-footer-around-current-page/#post-163785

    There’s still a border around the current page, as you can see here: http://www.valuation.co.il/%D7%94%D7%A1%D7%A4%D7%A8/%D7%AA%D7%95%D7%9B%D7%9F-%D7%A2%D7%A0%D7%99%D7%99%D7%A0%D7%99%D7%9D/

    Can you please assist me on this?

    Thanks a lot,
    Eran.

    omakad
    Participant

    I noticed that main navigation doesn’t stay up top of the page. It flows around blocking the content on the page. Here are the screenshots.

    http://i.imgur.com/LMZGt1x.jpg

    http://i.imgur.com/wRlzhbq.jpg

    Thank you,

    #164278

    Yup Here you go. Its Mold and Odor Resolution (dot) Com

    FYI. Also the main nav doesn’t stay up top of the page on Android devices. I’m getting the screenshots ready. I’ll open another requests for that if you want.

    Thank you.

    #164256

    Yes Devin. I did all those things. Cleared cache, deactivated all plugins, tried on iPad mini Safari browser . . . . Issue remains.

    I’m really surprised that no one has asked me for my login info to check it out. Being that it’s not the custom css or plugins, I would think that I would get a little more help with this guys. I’m 70+ hours deep into this project and I’m sure you can appreciate that I cannot deliver a site that’s broken in 1 or the 3 top browsers. This is my 4th Theme I have purchased from Kreisi and I’ve never come across anything like this. Solid themes and elite support. I feel like I’m about to be “let go.”

    There is no doubt in my mind that if one of the Kriesi dev’s looked under the hood, they would probably discover this issue fairly quickly. It’s probably a stupid mistake of mine somewhere.

    I think I noticed that there was a recent update. I have 2.1. Is there a newer update that might fix this?

    Thank you very much Devin.
    -Pat

    Hola Carlos,

    Del theme Enfold en especifico no que yo sepa, pero hay varios en YouTube de como manejar los Widgets en general.

    Saludos,
    Josue

    gracias…

    hay videos donde se puedan ver los pasos a seguir para modificar footer?
    saludos

    #164225

    Hejsan!

    If you would like to switch it back to Swedish please download Swedish translation here https://kriesi.at/support/topic/please-contribute-and-translate-enfold/#post-22223
    and follow instructions here https://kriesi.at/support/topic/please-contribute-and-translate-enfold/page/3/#post-114983

    Cheers!
    Yigit

    Hola Carlos,

    Si, eso se puede hacer con Widgets, la interfaz de estos es bastante intuitiva, solo tienes que arrastrar y soltar los elementos que quieres poner (en tu caso serian elementos de ‘Texto’) y listo, si tienes alguna duda especifica hazmela saber.

    Sobre lo del Newsletter puedes usar un plugin como este, que proporciona un [shortcode] que lo puedes pegar en el Widget del footer.

    Saludos,
    Josue

    Gracias de nuevo por su respuesta.

    Lo que quiero hacer en el footer es sencilo, creo que se puede hacer los los widgets… incluir una suscripcion a un newsletter + poner los datos de contacto (texto) + unos iconos de pago seguro.

    A proposito, me recomienda algun pluging para newsletter,

    Hay algun video donde se pueda ver como se edita el footer con widgets? he visto que hay algunos videos es Vimeo, pero son pocos y es una explicacion muy generica.

    gracias por su paciencia.
    Carlos

    Eleina_Shinn
    Participant

    Hi:

    I’ve created a slider and, although the text layers are perfectly positioned within the layerslider plugin when i preview them, some are completely in the wrong place when you look at the website… here’s my site: new.vampedupvintage.com

    First Slide – Top Layer “Costume Party or Themed Event” is actually placed much lower than it is shown – I can even try to adjust for the discrepancy and put it much lower but it remains at the top of the photo as you see here.

    Help?

    #164196

    Topic: Tabs responsive styles

    in forum Enfold
    zerozendesign
    Participant

    Hi guys,

    I have the styles established for the tabs on desktop view, but on responsive (phone) it reverts back to some hideous colors (background, font color, font size) How can I establish these colors across the board or do I need to style responsive independently?

    thanks!
    David

    Hola,

    Veo que no estas usando el socket, allí es donde puedes poner estos links de “Login / Register”, para hacerlo simplemente crea un nuevo Menu y asignale su ubicación al Socket.

    Con lo que respecta a modificar el footer, puedes usar los Widgets, ya si quieres hacer algo mas complejo se tendría que editar el archivo footer.php

    Saludos,
    Josue

    Gracias Josue;

    Probare lo que me dice, aprovecho la ocasion para consultar otra cuestion, como puedo modificar el contenido del fotter?

    la web es la siguiente; http://presume1-cp56.webjoomla.es/enfold/

    Haber si ahora puede ver la web?

    gracias por todo

    #164184

    Hey disruptivevision!

    Your site is inaccessible but here’s the code you need to add to the css/custom.css file or to the Quick CSS section:

    #header_main .container, .main_menu div > ul > li > a{
    height: 62px !important;
    line-height: 62px !important;
    }
    .fixed_header.social_header #main{
    padding-top: 93px;
    }

    Cheers!
    Josue

    Hola.

    No sale la URL que pusiste, puedes usar el Socket menu como te digo, pero en caso ya lo estes usando se tendría que editar algo en el archivo header.php del theme.

    Saludos,
    Josue

    Hola Josue;
    Gracias por la informacion, el link de la pagina que estoy desarrollando es el siguiente;

    Mientras miro lo comentado, por favor dime como poder poner el enlace encima del menu, gracias.
    saludos

    #164169
    yutakaemura
    Participant

    I updated to Enfold v2.2, but unfortunately, this fix was not included:

    https://kriesi.at/support/topic/another-date-format-issue-v2-1/

    Can you please make sure to include this on the next update?

    Thank you,

    #164168

    Hi Josue,

    Thanks!
    I´ve used the WidgetLogic plugin and now all sidebars works as i wanted.

    Once again, thanks for the help, you can mark this topic as solved. :)

    All the best.

    Hola,

    Primero tienes que activar el registro de usuarios (Opciones > General):

    Luego el link que se tendría que usar para que la gente se registre seria http://tupagina.com/wp-login.php, allí les va a salir tanto el formulario de registro como el de logeo.

    Sobre donde ponerlo, puedes usar el Menu socket que trae Enfold, pero como te digo, me puedes pasar la URL de tu pagina?

    Saludos,
    Josue

    #164137

    In reply to: Sticky Post

    Nach etwas Recherche scheint dies ein Bug von WP zu sein ( http://wordpress.stackexchange.com/questions/87472/ensuring-sticky-posts-are-retrieved-first-without-using-two-queries ) – anscheinend werden die “Sticky” Posts teilweise ignoriert. Ich habe den Code ganz am Ende des Threads getestet und eine leicht modifizierte Version funktioniert für mich:

    
    add_filter('the_posts', 'bump_sticky_posts_to_top');
    function bump_sticky_posts_to_top($posts) {
        foreach($posts as $i => $post) {
            if(is_sticky($post->ID)) 
            {
                $stickies[] = $post;
                unset($posts[$i]);
            }
        }
        
        if(!empty($stickies)) 
            return array_merge($stickies, $posts);
        
        return $posts;
    }
    

    einfach statt dem Code den ich oben gepostet habe in functions.php einfügen.

    kc
    Participant

    hey there,

    1. i use the 2.2 enfoldtheme, in portfoliosettings i can`t set any thumbnailcolumns, i choose 4 its 5, i choose 12 it´s still 5?
    i read a topic with the same problem – one solution is this code for the css – #top .avia-gallery .avia-gallery-thumb a{ width: 10% !important; }
    when i add this code in my css, yep it changes the columns from 5 to 10, but it is no solutions… maybe it`s a bug- blease guys is there any help for that?

    2. my thumbnailpictures in the portfolio looks not sharp in the gallery thumpnailcolumn with set to 5, the thumbnailframe in the portfolio got the size
    137px x 200px and the thumbnailpicture has just only 53px x 80px, so that scratch my eyes!
    in the function-enfold.php is a option to change the thumbnails, the original settings in the functions.php are 80px x 80px, must i change this, and when in wich size blease, a size waht works for every setting?
    thumbnail
    sorry about my english, i hope you can unterstand me.

    Hi Chris,

    I’ve tagged the topic for the head of support and Kriesi as I’m not overly familiar with the specific ins and outs of wpml but hopefully they will be able to shed some additional light on your issue.

    Regards,

    Devin

Viewing 30 results - 139,231 through 139,260 (of 142,715 total)