Viewing 30 results - 451 through 480 (of 612 total)
  • Author
    Search Results
  • #513706

    Sure,

    All I want to do is add “only-mobile” to the left image of the guy in the pipe and “only-desktop” to the right image.

    I’ve checked the functions.php file so that the custom class field is enabled:
    add_theme_support(‘avia_template_builder_custom_css’);

    I’ve also added custom CSS

    @media only screen and (min-width: 767px) {
    .only-mobile{
    display: none
    }
    .only-desktop{
    display: block;
    }
    }

    .only-mobile{
    display: block;
    }
    .only-desktop{
    display: none;
    }

    #513686

    Great, thanks. Can I check one final thing?

    Using Avia Layout builder I have an image, duplicated and sat side by side. How do I place a class in each one, on the first image: “only-mobile” and the second one: “only-desktop”?

    i’ve tried to follow this guide http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ but
    – I don;t know where to find a shortcode/template builder element
    – I can’t see custom css class anywhere within the image settings

    Thanks,

    DP

    #511964

    In reply to: Image Overlap

    Hey!

    You can try this in the Quick CSS field:

    .avia-image-container.av-styling-.avia-builder-el-2.avia-builder-el-no-sibling.avia-align-center .avia-image-container-inner {
        position: relative;
        bottom: -150px;
    }

    You might want to turn on the custom css class field: http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Best regards,
    Ismael

    #510982

    It’s not really an option to make a reset of Enfold, I would consider that too dangerous close to our launch :/ .

    I made a child theme with many custom css lines. Don’t see any that should interfere negatively with the accordion, though. Didn’t touch that one specifically.

    I made a few lines in the functions.php and added a custom 404.php. No changes to the theme files besides that.

    These are the lines in the child theme functions.php:

    <?php
    
    /*
    * Add your own functions here. You can also copy some of the theme functions into this file. 
    * WordPress will use those functions instead of the original functions then.
    */
    
    /* 
    REMOVES KRIESI LINK IN THE SOCKET
    */
    
    add_filter("kriesi_backlink","new_link");
    function new_link(){
    $kriesi_at_backlink = "";
    return $kriesi_at_backlink;
    }
    
    /* 
    REMOVES IMAGE FILE NAME ON HOVER LANDING PAGE HOTSPOTS
    */
    
    function add_custom_tooltip(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery('a').removeAttr('title');
    jQuery('img').removeAttr('title');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_tooltip');
    
    /* 
    PLACES SEARCH IN HAMBURGER MENU ON MOBILE
    */
    
    add_filter( 'wp_nav_menu_items', 'avf_add_search', 3, 2 );
    function avf_add_search( $items, $args ) {
    	if ($args->theme_location == 'avia')
    	{
    		$search = '<li id="menu-item-search-mobile" class="menu-item menu-item-type-post_type menu-item-object-
    
    page current-menu-item page_item page-item-18 current_page_item menu-item-top-level menu-item-top-level-
    
    5">'.get_search_form(false).'</li>';
    		$items = $search . $items;
    	}
    	return $items;
    }
    
    /* 
    ALLOWS US TO SET A CUSTOM SHOP PAGE
    */
    
    add_theme_support( 'avia_custom_shop_page' );
    
    
    #510053

    Hey!

    1.) try to control image on your first screenshot with this code in Quick CSS field:

    @media only screen 
      and (min-device-width: 414px) 
      and (max-device-width: 736px) 
      and (-webkit-min-device-pixel-ratio: 3)
      and (orientation: landscape) {
    .av-parallax.avia-full-stretch.active-parallax.enabled-parallax {
    background-position: -58px 45px !important;
    }}
    

    2.) I couldn’t find image showing on your second screenshot on your website. We need to be able to inspect it, so a precise link is necessary.

    3.) same es 2.)

    4.) Use this and adjust as needed:

    @media only screen 
      and (min-device-width: 414px) 
      and (max-device-width: 736px) 
      and (-webkit-min-device-pixel-ratio: 3)
      and (orientation: portrait) { 
    .av-parallax.avia-full-stretch.active-parallax.enabled-parallax {
    background-position: -58px 45px !important;
    }}
    

    If you really need to adjust every single image, then you need to activate Custom Class for all ALB elements and give your images a unique CSS class, otherwise you will effect all parallax images with the code above.

    Regards,
    Andy

    #509534

    In reply to: WooThumbs Support

    Because I already solved the issue you can’t see the problem any more. If you activate the fullscreen option in WooThumbs you will get a fullscreen indicator displayed as an overlay to the product image on the single product page. If you click it the lightbox will be triggered, the gray overlay will appear but the product image does not due to Enfolds CSS rule “.mfp-ready .mfp-figure { opacity: 0; }”. Enfold will set the opacity to 1 only if the root container has the css classes mentioned in my post.

    Because WooThumbs uses its own implementation of the Maginific Popup script and its own event listener the classes you define in avia.js (mainClass) do not get applied and therefore the opacity is 0. Thus the image is invisible. To be honest this is neither an Enfold nor a WooThumbs problem in means of faulty or bad development. This is one of the major issue in WordPress if it comes to loading resources/scripts that are not part of the core development (like with bootstrap). If many developers use the same scripts you likely get this kind of problems due to unnecessary redundancy that cant be solved unless WordPress bundles the script to be used as dependency.

    And because a plugin will always be the second thing to install (a theme is mandatory) I asked the developer of WooThumbs to add either a custom css class to the root container of the lightbox or an option to define additional classes by the user. Either way one can write a more specific css rule or simply apply the classes needed to match the theme rules.

    I hope I could describe the problem well enough.

    Hey!

    Alright. Please follow the following steps:

    1.) Add this code in the theme’s functions.php file:

    #
    # wrap single product image in an extra div
    #
    
    function avia_add_image_div() {
     echo "<div class='single-product-main-image alpha'>";
    }
    
    function avia_close_image_div() {
     echo "</div>";
    }
    
    #
    # wrap single product summary in an extra div
    #
    
    function avia_add_summary_div() {
     echo "<div class='single-product-summary'>";
    }
    
    function avia_close_summary_div() {
     echo "</div>"; //close out the summary
     get_sidebar();
    }
    
    function avf_product_sidebar_layout_mod($layout){
     if( is_single() )$layout = "sidebar_right";
     return $layout;
    }
    
    add_action('init', 'ava_product_sidebar_mod');
    function ava_product_sidebar_mod() {
     add_action( 'woocommerce_before_single_product_summary', 'avia_add_image_div', 2 );
     add_action( 'woocommerce_before_single_product_summary', 'avia_close_image_div', 20 );
     add_action( 'woocommerce_before_single_product_summary', 'avia_add_summary_div', 25 );
     add_action( 'woocommerce_after_single_product_summary', 'avia_close_summary_div', 3 );
     add_filter( 'avf_product_sidebar_layout', 'avf_product_sidebar_layout_mod', 5);
    }

    2.) Edit config-woocommerce > config.php then look for this code around line 573:

    $sidebar_setting = avia_layout_class( 'main' , false );
    

    .. replace it with:

    $sidebar_setting = apply_filters( 'avf_product_sidebar_layout', avia_layout_class( 'main' , false ) );
    

    3.) Add this in the Quick CSS field or css > custom.css file:

    .single-product .template-shop .product {
    width: 68%;
    margin-right: 4%;
    clear: none;
    float: left;
    }

    4.) Smile. :)

    Done.
    Cheers!
    Ismael

    Hi!

    You can give custom CSS class to your blog element and then change the code to following one and it should work fine

    .your-custom-class .avia-image-container.av-styling-circle { 
    top: 40px;
    left: 20px;
    }

    Best regards,
    Yigit

    #502371
    cloeffler
    Participant

    Why can’t I get my horizontal ruler to show up??

    Here is the page html:
    [av_one_fifth first min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat'][/av_one_fifth]

    [av_three_fifth min_height='' vertical_alignment='av-align-top' space='' margin='0px' margin_sync='true' padding='0px,0px,0px,0px' border='1px' border_color='#726286' radius='0px,0px,0px,0px' background_color='' src='' attachment='' attachment_size='' background_position='top left' background_repeat='no-repeat']

    [av_hr class='custom' height='50' shadow='no-shadow' position='center' custom_border='av-border-thin' custom_width='100%' custom_border_color='#726286' custom_margin_top='' custom_margin_bottom='30px' icon_select='yes' custom_icon_color='#726286' icon='ue8bf' font='entypo-fontello']

    [av_textblock size='16' font_color='' color='']
    <p>
    <p style=”text-align: center;”>[bibleverseoftheday]</p>
    <p></p>
    [/av_textblock]

    [/av_three_fifth][av_one_fifth min_height='' vertical_alignment='' space='' custom_margin='' margin='0px' padding='0px' border='' border_color='' radius='0px' background_color='' src='' background_position='top left' background_repeat='no-repeat'][/av_one_fifth]

    Here is the css that I have added to the default template:

    /*
    Theme Name: Enfold Child
    Description: A Child Theme for the Enfold WordPress Theme. If you plan to do a lot of file modifications we recommend to use this Theme instead of the original Theme. Updating wil be much easier then.
    Version: 1.0
    Author: Kriesi
    Author URI: http://kriesi.at
    Template: enfold
    */

    h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    letter-spacing: 0.02em;
    word-wrap: break-word;
    }

    /*Add your own styles here:*/

    #top #header .av-main-nav > li > a {
    font-weight: 500;
    text-transform: uppercase;
    }

    .phone-info {
    word-spacing:10px;
    }

    .slideshow_caption {
    width: 62%;
    padding: 25px;
    }

    h1 {
    letter-spacing: -.1px;
    }

    h2 {
    letter-spacing: -.2px;
    }

    h3 {
    letter-spacing: -.15px;
    }

    h4 {
    letter-spacing: -.05px;
    }
    #top #wrap_all .header_color h3, #top #wrap_all .main_color h3, #top #wrap_all .alternate_color h3, #top #wrap_all .footer_color h3, #top #wrap_all .socket_color h3 {
    font-family: “Roboto”, “Helvetica Neue”, Helvetica, Arial, sans-serif;
    }

    .avia-slideshow {
    height: 500px !important;
    }

    .side-container-comment-inner {
    display: none !important;
    }

    .slide-meta {
    display: none !important; }

    .comment_meta_container {
    clear: both;
    float: none;
    display: none !important;
    }

    .av-share-box .av-share-link-description {
    margin-bottom: 20px;
    text-align: center;
    }

    .av-share-box ul li a {
    display: block;
    padding: 25px 0px;
    text-decoration: none;
    font-size: 1.5em;
    transition: all 0.2s ease-in-out 0s;
    }

    #top .price, #top .price span, #top del, #top ins {
    color:#666666;
    }

    #top #header_meta a, #top #header_meta li, #top #header_meta .phone-info {
    font-family: “Roboto”, “Helvetica Neue”, Helvetica, Arial, sans-serif;
    font-size: .9em;
    }

    #top .cart_dropdown { display: none; }
    /*
    remove shopping and cart functions
    */

    ul.cart_dropdown { display: none !important; }

    .template-shop div.product div.summary {
    padding-left: 20px;
    }

    div.product .woocommerce-tabs ul.tabs {
    display: none;
    }

    div.main_color .avia_cart_buttons {
    display: none;
    }

    #top .title_container .container {
    display: none;
    }

    #avia-menu .avia-menu-text .sub-menu {
    font-family: “Roboto”, “Helvetica Neue”, Helvetica, Arial, sans-serif;
    font-size: 1 em !important;
    font-weight: 500;
    text-transform: uppercase;
    }

    .sub-menu li a {
    font-family: “Roboto”, “Helvetica Neue”, Helvetica, Arial, sans-serif;
    font-size: 1 em !important;
    font-weight: 500;
    text-transform: uppercase;
    }

    .responsive .av-image-hotspot {
    height: 50px;
    width: 50px;
    line-height: 50px;
    }

    .main_color blockquote {
    font-family: “Georgia”, “Times”, serif;
    font-style: italic;
    font-size: 1.3em;
    color: #726286;
    border-color: #726286;

    }

    .content .entry-content-wrapper {
    padding-top: 25px;
    }

    template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 {
    text-transform: uppercase;
    letter-spacing: -1px;
    font-weight: 100;
    font-size: 3em;
    color: #726286;
    }

    #top .avia-table td, #top .avia-table tr, #top .avia-table th, #top .avia-table tr th:first-child, #top .avia-table tr td:first-child {
    border-color: #726286;
    }

    #top .avia-table td, #top .avia-table tr, #top .avia-table th, #top .avia-table tr th:first-child, #top .avia-table tr td:first-child {
    border-left: none !important;
    border-right: none !important;

    }

    .et_bloom .et_bloom_inline_form {
    clear: both;
    margin: 0px 0px;
    display: inline-block;
    }

    #top .inner_product_header {
    text-align: center;
    text-transform: none;
    }

    .big-preview.single-big a {
    pointer-events: none;
    }

    #top .thumbnail_container img {
    padding:30px;
    }

    #top.single-post #main > div.container_wrap:nth-child(2) .av_textblock_section {
    text-align: center;
    }

    .template-blog .post_delimiter {
    border-bottom: 2px dotted #726286;
    }

    .hr-inner {
    border-color: #EEE !important;
    }

    .hr-custom {
    margin: 0px;
    display: block;
    min-height: 21px;
    height: auto;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    float: left;
    text-align: center;
    }

    shopgladtidings.org/insider
    then go to
    http://shopgladtidings.org/uncategorized/bible-verse/
    any suggestions?? I’m a newbie and really stuck!!

    #495453
    condonpb
    Participant

    I have a strange thing here!!
    please see http://www.peter-test2.co.uk
    and text ” Prof Yacoub makes no charge for appointments, the Institute at Heart Science Centre is always grateful for donations to allow this work to continue.”
    I am trying to get the text captions in white to stand out more against the slider image. I have added the custom functions php code, and added the custom css class as “pbc-text” all is ok. However I can get any of the css to load it just shows the .pbc-text .slide-1 .avia-caption-content p {} with no content. I have tried this as a child and also in the quick css area and the same thing happens. Can you help please.

    #495252

    I have a strange thing here!!
    please see http://www.peter-test2.co.uk
    and text ” Prof Yacoub makes no charge for appointments, the Institute at Heart Science Centre is always grateful for donations to allow this work to continue.”
    I am trying to get the text captions in white to stand out more against the slider image. I have added the custom functions php code, and added the custom css class as “pbc-text” all is ok. However I can get any of the css to load it just shows the .pbc-text .slide-1 .avia-caption-content p {} with no content. I have tried this as a child and also in the quick css area and the same thing happens. Can you help please.

    • This reply was modified 10 years, 4 months ago by condonpb.
    #491994

    Hi!

    Yes, it is possible but it will require major code rewrite. You need to modify the config-templatebuilder > avia-shortcodes > portfolio.php file and then add custom css modifications. Look for this code:

    $extraClass .= ' default_av_fullwidth ';
    
                        $output .= "<div data-ajax-id='{$the_id}' class=' grid-entry flex_column isotope-item all_sort {$style_class} {$post_class} {$sort_class} {$grid} {$extraClass}'>";
                        $output .= "<article class='main_color inner-entry' ".avia_markup_helper(array('context' => 'entry','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)).">";
                        $output .= apply_filters('avf_portfolio_extra', "", $entry);
                        $output .= "<".$link_markup[0]." data-rel='grid-".avia_post_grid::$grid."' class='grid-image avia-hover-fx'>".$custom_overlay.get_the_post_thumbnail( $the_id, $image_size, $image_attrs )."</".$link_markup[1].">";
                        $output .= !empty($title) || !empty($excerpt) ? "<div class='grid-content'><div class='avia-arrow'></div>" : '';
    
                        if(!empty($title))
                        {
                            $markup = avia_markup_helper(array('context' => 'entry_title','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup));
                            $output .= '<header class="entry-content-header">';
                            $output .= "<h3 class='grid-entry-title entry-title' $markup>";
                            
                            if(!empty($title_link))
                            {
                            	$output .= "<a href='{$title_link}' title='".esc_attr(strip_tags($title))."'>".$title."</a>";
                            }
                            else
                            {
                            	$output .= "".$title."";
                            }
                            
                            $output .= '</h3></header>';
                        }
                        $output .= !empty($excerpt) ? "<div class='grid-entry-excerpt entry-content' ".avia_markup_helper(array('context'=>'entry_content','echo'=>false, 'id'=>$the_id, 'custom_markup'=>$custom_markup)).">".$excerpt."</div>" : '';
                        $output .= !empty($title) || !empty($excerpt) ? "</div>" : '';
                        $output .= '<footer class="entry-footer"></footer>';
                        $output .= "</article>";
                        $output .= "</div>";

    You can re-arrange the elements.

    Best regards,
    Ismael

    #490181

    In reply to: B/W hover images

    mmm doe not work. I added this code in function.php
    add_theme_support('avia_template_builder_custom_css');

    I added a Custom css class called freek1 in the slider settings and i added both code (from above) with the right custom-class(freek1).

    Maybe it is possible to do the b/w – color hover only on elements with a custom css class? So not on all images on the site…

    THX Freek

    • This reply was modified 10 years, 5 months ago by Freek.
    #484233
    RunningDogMedia
    Participant

    Hi,

    I found this thread because my client wants a button in the same postition: https://kriesi.at/support/topic/how-can-a-add-a-hyperlinked-image-at-the-top-of-my-newscast-blog/
    I tried improvising to make it work, and I’m stuck. Here’s the code I added to header.php (inline to show position):

    <?php
    global $avia_config;

    $style = $avia_config[‘box_class’];
    $responsive = avia_get_option(‘responsive_active’) != “disabled” ? “responsive” : “fixed_layout”;
    $blank = isset($avia_config[‘template’]) ? $avia_config[‘template’] : “”;
    $av_lightbox= avia_get_option(‘lightbox_active’) != “disabled” ? ‘av-default-lightbox’ : ‘av-custom-lightbox’;
    $preloader = avia_get_option(‘preloader’) == “preloader” ? ‘av-preloader-active av-preloader-enabled’ : ‘av-preloader-disabled’;

    ?><!DOCTYPE html>
    <html <?php language_attributes(); ?> class=”<?php echo ” html_{$style} “.$responsive.” “.$preloader.” “.$av_lightbox.” “.avia_header_class_string();?> “>
    <head>
    <meta charset=”<?php bloginfo( ‘charset’ ); ?>” />

    <!– page title, displayed in your browser bar –>
    <title><?php if(function_exists(‘avia_set_title_tag’)) { echo avia_set_title_tag(); } ?></title>

    <?php
    /*
    * outputs a rel=follow or nofollow tag to circumvent google duplicate content for archives
    * located in framework/php/function-set-avia-frontend.php
    */
    if (function_exists(‘avia_set_follow’)) { echo avia_set_follow(); }

    /*
    * outputs a favicon if defined
    */
    if (function_exists(‘avia_favicon’)) { echo avia_favicon(avia_get_option(‘favicon’)); }
    ?>

    <!– mobile setting –>
    <?php

    if( strpos($responsive, ‘responsive’) !== false ) echo ‘<meta name=”viewport” content=”width=device-width, initial-scale=1, maximum-scale=1″>’;
    ?>

    <!– Scripts/CSS and wp_head hook –>
    <?php
    /* Always have wp_head() just before the closing </head>
    * tag of your theme, or you will break many plugins, which
    * generally use this hook to add elements to <head> such
    * as styles, scripts, and meta tags.
    */

    wp_head();

    ?>

    </head>

    <body id=”top” <?php body_class($style.” “.$avia_config[‘font_stack’].” “.$blank); avia_markup_helper(array(‘context’ => ‘body’)); ?>>

    <?php

    if(“av-preloader-active av-preloader-enabled” === $preloader)
    {
    echo avia_preload_screen();
    }

    ?>

    <div id=’wrap_all’>

    <?php
    if(!$blank) //blank templates dont display header nor footer
    {
    //fetch the template file that holds the main menu, located in includes/helper-menu-main.php
    get_template_part( ‘includes/helper’, ‘main-menu’ );

    } ?>

    <div id=’main’ data-scroll-offset='<?php echo avia_header_setting(‘header_scroll_offset’); ?>’>

    <?php do_action(‘ava_after_main_container’); ?>

    The image appears above the header, but if I try to copy/paste the css you used in the example above, the image disappears (or ends up behind the header). I’m a novice with CSS, so I don’t know what I’m doing wrong. Thanks.

    #483066
    ILikeMovies
    Participant

    Did a theme check and got this results below.

    Validation results for WordPress theme enfold.zip
    validation score : 0 %

    9 critical alerts. 12 warnings.

    THEME NAME
    Enfold
    THEME TYPE
    Wordpress theme 4.2
    FILE NAME
    enfold.zip
    FILE SIZE
    15226915 bytes
    MD5
    31dc0119acd852dfa974609f47b73842
    SHA1
    f1760c5358a1f0e7a7088cb696875146708b33f5
    LICENSE
    Custom
    Themeforest Split Licence
    FILES INCLUDED
    CSS, PHP, HTML, XML, Bitmap images, Adobe Illustrator
    THEME URI
    kriesi.at/themes/enfold/
    VERSION
    3.2
    AUTHOR URI
    http://kriesi.at
    CREATION DATE
    2015-08-05
    LAST FILE UPDATE
    2015-08-05
    LAST VALIDATION
    2015-08-05 02:50
    Critical alerts
    Title : Title

    No reference to add_theme_support( “title-tag” ) was found in the theme. It is recommended that the theme implement this functionality for WordPress 4.1 and above.
    The <title> tags can only contain a call to wp_title(). Use the wp_title filter to modify the output.

    Security breaches : Modification of PHP server settings

    Found ini_set in file html-helper.class.php.

    Line 691: @ini_set(‘memory_limit’,’256M’);

    Found ini_set in file font-manager.class.php.
    Line 104: @ini_set( ‘memory_limit’, apply_filters( ‘admin_memory_limit’, WP_MAX_MEMORY
    Security breaches : Use of base64_decode()

    Found base64_decode in file class.ls.importutil.php.

    Line 88: if($decoded = base64_decode($data, true)) {

    Found base64_decode in file config.php.
    Line 63: $sample_slider = json_decode(base64_decode(file_get_contents(dirname(__FILE__).’/LayerSlider/{$path}{$sa
    Line 67: //print_r(base64_encode(str_replace(‘avia-samples’,’sampleslider’, base64_decode(file_get_contents(dirname(__FILE__).’/LayerSlider/sampleslide

    Found base64_decode in file avia-import-class.php.
    Line 25: $options = unserialize(base64_decode($options));
    Line 26: $dynamic_pages = unserialize(base64_decode($dynamic_pages));
    Line 27: $dynamic_elements = unserialize(base64_decode($dynamic_elements));
    Line 56: $widget_settings = unserialize(base64_decode($widget_settings));

    Found base64_decode in file function-set-avia-ajax.php.
    Line 608: $elements = unserialize( base64_decode( $_POST[‘defaul_elements’] ) );
    Line 735: $options = unserialize(base64_decode($options));
    Security breaches : Use of base64_encode()

    Found base64_encode in file actions.php.

    die(base64_encode(json_encode($data)));

    Found base64_encode in file class-htmlhelper.php.
    $elString = base64_encode(serialize($element[‘temlate_default_elements’]));

    Found base64_encode in file avia-export-class.php.
    $widget_settings = base64_encode(serialize($widget_settings));
    $export = base64_encode(serialize($export));
    if($export_dynamic_pages) $export_dynamic_pages = base64_encode(serialize($export_dynamic_pages));
    if($export_dynamic_elements) $export_dynamic_elements = base64_encode(serialize($export_dynamic_elements));
    Security breaches : Use of variable functions

    Found $query_function in file functions-enfold.php.

    Line 155: $posts = (($query_function == ‘get_posts’) || !function_exists($query_function)) ? get_posts($search_query) : $query_function($search_query, $search_parameters, $defaults);

    Found $class in file phpQuery.php.
    Line 824: * @TODO support more than event in $type (space-separated)
    Line 903: * @TODO support more than event in $type (space-separated)
    Line 931: * @TODO support more than event in $type (space-separated)
    Line 1675: ? new $class($this, $this->getDocumentID())
    Line 2509: * @TODO support more than event in $type (space-separated)
    Line 2536: * @TODO support more than event in $type (space-separated)
    Line 2555: * @TODO support more than event in $type (space-separated)
    Line 4541: ? new $class($arg1, $domId)

    Found $method in file class-htmlhelper.php.
    Line 1651: $output .= $this->$method($element);

    Found $method in file function-set-avia-frontend.php.
    Line 779: $output .= ($paged > 2 && $paged > $range+1 && $showitems < $pages)? ‘«‘:”;
    Line 780: $output .= ($paged > 1 && $showitems < $pages)? ‘‘:”;
    Line 787: $output .= ($paged == $i)? ‘<span class=’current’>’.$i.'</span>’:’‘.$i.’‘;
    Line 791: $output .= ($paged < $pages && $showitems < $pages) ? ‘‘ :”;
    Line 792: $output .= ($paged < $pages-1 && $paged+$range-1 < $pages && $showitems < $pages) ? ‘»‘:”;
    Line 1008: update_option($fallback($colors), $avia_config[‘default_color_array’]);
    Line 1245: $pattern = ‘!$start((https?|ftp)://(-\.)?([^\s/?\.#-]+\.?)+(/[^\s]*)?)$end!’;
    Line 1253: $pattern = ‘!$start(https?(?://([^/?#]*))?([^?#]*?\.(?:jpg|gif|png)))$end!’;

    Found $walker in file class-megamenu.php.
    Line 73: $arguments[‘walker’] = new $walker();

    Found $page_creation_method in file class-adminpages.php.
    Line 141: $avia_page = $page_creation_method( $the_title, // page title

    Found $class in file template-builder.class.php.
    Line 338: $this->shortcode_class[$class] = new $class($this);
    Unwanted files : hidden file(s) or folder(s)

    .sass-cache .ds_store .gitignore .gitattributes .travis.yml was found.

    Presence of iframes : iframes are sometimes used to load unwanted adverts and malicious code on another site

    Found <iframe src=”http://news.kreaturamedia.com/layerslider/”&gt; in file slider_list.php.

    Line 672: <iframe src=’http://news.kreaturamedia.com/layerslider/’></iframe&gt;

    Found <iframe class=”av_facebook_widget” src=”//www.facebook.com/plugins/likebox.php?href=’.$url.’&width&height=’.$profiles.’&colorscheme=light&show_faces=’.$faces.’&header=false&stream=false&show_border=false” scrolling=”no” frameborder=”0″ style=”border:none; overflow:hidden; height:’.$height.’;” allowTransparency=”true”> in file class-framework-widgets.php.
    Line 64: echo ‘<iframe class=’av_facebook_widget’ src=’//www.facebook.com/plugins/likebox.

    Found <iframe src='{$video_url}’ height=’1600′ width=’900′ frameborder=” class=’av_vimeo_frame’ id='{$uid}’> in file slideshow.php.
    Line 1073: $video = ‘<div class=’av-click-overlay’></div><div class=’mejs-mediaelement’><iframe src='{$video_url}’ height=’1600′ width=’900′ frameborder=” class=
    Malware : Operations on file system

    file_put_contents was found in the file phpQuery.php

    Line 1396: // file_put_contents(dirname(__FILE__).’/phpQuery.log’, print_r($in, true).’\n

    file_get_contents was found in the file phpQuery.php
    Line 4765: file_get_contents($file), $contentType
    Line 4816: return self::newDocumentPHP(file_get_contents($file), $contentType);

    file_get_contents was found in the file phpQuery.php
    Line 4765: file_get_contents($file), $contentType
    Line 4816: return self::newDocumentPHP(file_get_contents($file), $contentType);

    file_put_contents was found in the file actions.php
    Line 513: file_put_contents($file, stripslashes($_POST[‘contents’]));
    Line 542: file_put_contents($file, stripslashes($_POST[‘contents’]));
    Line 617: file_put_contents($custom_trs, $data);

    file_put_contents was found in the file actions.php
    Line 513: file_put_contents($file, stripslashes($_POST[‘contents’]));
    Line 542: file_put_contents($file, stripslashes($_POST[‘contents’]));
    Line 617: file_put_contents($custom_trs, $data);

    file_put_contents was found in the file actions.php
    Line 513: file_put_contents($file, stripslashes($_POST[‘contents’]));
    Line 542: file_put_contents($file, stripslashes($_POST[‘contents’]));
    Line 617: file_put_contents($custom_trs, $data);

    readfile was found in the file class.ls.exportutil.php
    Line 115: readfile($this->file);

    file_get_contents was found in the file class.ls.sources.php
    Line 53: $skins[$handle][‘info’] = json_decode(file_get_contents($path.’/info.json’), true);
    Line 179: $sliders[$handle][‘info’] = json_decode(file_get_contents($path.’/info.json’), true);

    file_get_contents was found in the file class.ls.sources.php
    Line 53: $skins[$handle][‘info’] = json_decode(file_get_contents($path.’/info.json’), true);
    Line 179: $sliders[$handle][‘info’] = json_decode(file_get_contents($path.’/info.json’), true);

    file_get_contents was found in the file class.ls.importutil.php
    Line 87: $data = file_get_contents($archive);
    Line 216: $data = json_decode(file_get_contents($file), true);

    file_get_contents was found in the file class.ls.importutil.php
    Line 87: $data = file_get_contents($archive);
    Line 216: $data = json_decode(file_get_contents($file), true);

    file_get_contents was found in the file skin_editor.php
    Line 82: <textarea rows=’10’ cols=’50’ name=’contents’ class=’ls-codemirror’><?php echo htmlentities(file_get_contents($file)); ?></textarea>

    file_get_contents was found in the file style_editor.php
    Line 13: $contents = file_exists($file) ? file_get_contents($file) : ”;

    file_get_contents was found in the file transition_builder.php
    Line 14: if(file_exists($custom_trs)) { $data = file_get_contents($custom_trs); }
    Line 15: elseif(file_exists($sample_trs)) { $data = file_get_contents($sample_trs); }

    file_get_contents was found in the file transition_builder.php
    Line 14: if(file_exists($custom_trs)) { $data = file_get_contents($custom_trs); }
    Line 15: elseif(file_exists($sample_trs)) { $data = file_get_contents($sample_trs); }

    file_get_contents was found in the file config.php
    Line 63: $sample_slider = json_decode(base64_decode(file_get_contents(dirname(__FILE__).’/LayerSlider/{$path}{$sample_file}’)),
    Line 67: //print_r(base64_encode(str_replace(‘avia-samples’,’sampleslider’, base64_decode(file_get_contents(dirname(__FILE__).’/LayerSlider/sampleslider/sample_slide

    file_get_contents was found in the file config.php
    Line 63: $sample_slider = json_decode(base64_decode(file_get_contents(dirname(__FILE__).’/LayerSlider/{$path}{$sample_file}’)),
    Line 67: //print_r(base64_encode(str_replace(‘avia-samples’,’sampleslider’, base64_decode(file_get_contents(dirname(__FILE__).’/LayerSlider/sampleslider/sample_slide

    fopen was found in the file function-set-avia-backend.php
    Line 787: $handle = @fopen( $index_file, ‘w’ );
    Line 805: $handle = @fopen( $file, ‘w’ );
    Line 813: $handle = fopen($file, ‘r’);

    fwrite was found in the file function-set-avia-backend.php
    Line 790: fwrite( $handle, ‘<?php\r\necho ‘Sorry, browsing the directory is not allow
    Line 808: $created = fwrite( $handle, $content );

    fclose was found in the file function-set-avia-backend.php
    Line 791: fclose( $handle );
    Line 809: fclose( $handle );
    Line 816: fclose( $handle );

    fopen was found in the file function-set-avia-backend.php
    Line 787: $handle = @fopen( $index_file, ‘w’ );
    Line 805: $handle = @fopen( $file, ‘w’ );
    Line 813: $handle = fopen($file, ‘r’);

    fwrite was found in the file function-set-avia-backend.php
    Line 790: fwrite( $handle, ‘<?php\r\necho ‘Sorry, browsing the directory is not allow
    Line 808: $created = fwrite( $handle, $content );

    fclose was found in the file function-set-avia-backend.php
    Line 791: fclose( $handle );
    Line 809: fclose( $handle );
    Line 816: fclose( $handle );

    fopen was found in the file function-set-avia-backend.php
    Line 787: $handle = @fopen( $index_file, ‘w’ );
    Line 805: $handle = @fopen( $file, ‘w’ );
    Line 813: $handle = fopen($file, ‘r’);

    fread was found in the file function-set-avia-backend.php
    Line 814: $filecontent = fread($handle, filesize($file));

    fclose was found in the file function-set-avia-backend.php
    Line 791: fclose( $handle );
    Line 809: fclose( $handle );
    Line 816: fclose( $handle );

    file_get_contents was found in the file parsers.php
    Line 252: if ( ! xml_parse( $xml, file_get_contents( $file ), true ) ) {

    fopen was found in the file parsers.php
    Line 401: $fp = $this->fopen( $file, ‘r’ );
    Line 627: function fopen( $filename, $mode = ‘r’ ) {
    Line 630: return fopen( $filename, $mode );

    fclose was found in the file parsers.php
    Line 450: $this->fclose($fp);
    Line 645: function fclose( $fp ) {
    Line 648: return fclose( $fp );

    fopen was found in the file parsers.php
    Line 401: $fp = $this->fopen( $file, ‘r’ );
    Line 627: function fopen( $filename, $mode = ‘r’ ) {
    Line 630: return fopen( $filename, $mode );

    fopen was found in the file parsers.php
    Line 401: $fp = $this->fopen( $file, ‘r’ );
    Line 627: function fopen( $filename, $mode = ‘r’ ) {
    Line 630: return fopen( $filename, $mode );

    fclose was found in the file parsers.php
    Line 450: $this->fclose($fp);
    Line 645: function fclose( $fp ) {
    Line 648: return fclose( $fp );

    fclose was found in the file parsers.php
    Line 450: $this->fclose($fp);
    Line 645: function fclose( $fp ) {
    Line 648: return fclose( $fp );

    file_get_contents was found in the file function-set-avia-frontend.php
    Line 636: $body = @file_get_contents($url, NULL, stream_context_create($options), 0, 1);

    fopen was found in the file auto-updates.php
    Line 67: $handle = @fopen( $this->custom_css, ‘w’ );
    Line 97: $handle = @fopen( $css_path, ‘r’ );

    fwrite was found in the file auto-updates.php
    Line 69: if ($handle && fwrite($handle, $this->custom_css_content)) {

    fopen was found in the file auto-updates.php
    Line 67: $handle = @fopen( $this->custom_css, ‘w’ );
    Line 97: $handle = @fopen( $css_path, ‘r’ );

    fread was found in the file auto-updates.php
    Line 100: $this->custom_css_content = fread($handle, $size);

    fclose was found in the file auto-updates.php
    Line 102: fclose($handle);

    file_get_contents was found in the file function-set-avia-ajax.php
    Line 711: $options = @file_get_contents($path);

    fopen was found in the file font-manager.class.php
    Line 141: $ofp = fopen( $this->paths[‘tempdir’].’/’.basename($entry), ‘w’ );
    Line 181: if(empty($response) || trim($response) == ” || strpos($response, ‘<svg’) === false) $response = wp_remote_fopen(trailingslashit($this->paths[‘tempurl’]).$this->svg_file );
    Line 233: $handle = @fopen( $charmap, ‘w’ );

    fwrite was found in the file font-manager.class.php
    Line 147: fwrite( $ofp, fread($fp, 8192) );
    Line 237: fwrite( $handle, ‘<?php $chars = array();’);
    Line 245: fwrite( $handle, ‘\r\n’.’$chars[\”.$this->font_name.’\’][‘.$delimiter.$uni

    fread was found in the file font-manager.class.php
    Line 147: fwrite( $ofp, fread($fp, 8192) );

    fclose was found in the file font-manager.class.php
    Line 149: fclose($fp);
    Line 150: fclose($ofp);
    Line 249: fclose( $handle );

    fclose was found in the file font-manager.class.php
    Line 149: fclose($fp);
    Line 150: fclose($ofp);
    Line 249: fclose( $handle );

    file_get_contents was found in the file font-manager.class.php
    Line 178: $response = file_get_contents(trailingslashit($this->paths[‘tempdir’]).$this->svg_file

    fopen was found in the file font-manager.class.php
    Line 141: $ofp = fopen( $this->paths[‘tempdir’].’/’.basename($entry), ‘w’ );
    Line 181: if(empty($response) || trim($response) == ” || strpos($response, ‘<svg’) === false) $response = wp_remote_fopen(trailingslashit($this->paths[‘tempurl’]).$this->svg_file );
    Line 233: $handle = @fopen( $charmap, ‘w’ );

    fwrite was found in the file font-manager.class.php
    Line 147: fwrite( $ofp, fread($fp, 8192) );
    Line 237: fwrite( $handle, ‘<?php $chars = array();’);
    Line 245: fwrite( $handle, ‘\r\n’.’$chars[\”.$this->font_name.’\’][‘.$delimiter.$uni

    fwrite was found in the file font-manager.class.php
    Line 147: fwrite( $ofp, fread($fp, 8192) );
    Line 237: fwrite( $handle, ‘<?php $chars = array();’);
    Line 245: fwrite( $handle, ‘\r\n’.’$chars[\”.$this->font_name.’\’][‘.$delimiter.$uni

    fclose was found in the file font-manager.class.php
    Line 149: fclose($fp);
    Line 150: fclose($ofp);
    Line 249: fclose( $handle );
    Admin menu : Themes that support admin pages should use add_theme_page() instead of other functions (add_admin_page, add_submenu_page…)

    File menus.php :

    Line 25: $layerslider_hook = add_menu_page(

    File class-adminpages.php :
    Line 152: $avia_page = add_submenu_page( $top_level, // parent page slug to attach
    Warnings
    Plugin territory : Plugin territory functionalities

    The theme uses the register_post_type() function, which is plugin-territory functionality.
    The theme uses the add_shortcode() function. Custom post-content shortcodes are plugin-territory functionality.

    Unwanted directories : GIT revision control directory

    GIT revision control directory
    .git was found.

    Custom elements : Presence of custom header

    No reference to custom header was found in the theme.

    Custom elements : Presence of custom background

    No reference to custom background was found in the theme.

    Deprecated functions : get_themes

    get_themes found in file class-pixelentity-theme-update.php. Deprecated since version 3.4. Use wp_get_themes() instead.

    Line 41: $installed = function_exists(‘wp_get_themes’) ? wp_get_themes() : get_themes();
    Deprecated functions : get_theme_data

    get_theme_data found in file inc-autoconfig.php. Deprecated since version 3.4. Use wp_get_theme() instead.

    Line 44: $avia_base_data = get_theme_data( AVIA_BASE . ‘style.css’ );

    get_theme_data found in file class-update-notifier.php. Deprecated since version 3.4. Use wp_get_theme() instead.
    Line 99: $theme = get_theme_data( AVIA_BASE . ‘style.css’ );
    Deprecated functions : screen_icon

    screen_icon found in file wordpress-importer.php. Deprecated since version 3.8. Use none instead.

    Line 998: screen_icon();
    Editor style : Presence of editor style

    No reference to add_editor_style() was found in the theme. It is recommended that the theme implements editor styling, so as to make the editor content match the resulting post output in the theme, for a better user experience.

    I18N implementation : Proper use of _e(

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.

    Line 36: <td><?php _e($lsDefaults[‘slider’][‘width’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 38: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘width’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 41: <td><?php _e($lsDefaults[‘slider’][‘height’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 43: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘height’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 47: <td><?php _e($lsDefaults[‘slider’][‘responsiveness’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 49: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘responsiveness’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 52: <td><?php _e($lsDefaults[‘slider’][‘maxWidth’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 54: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘maxWidth’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 58: <td><?php _e($lsDefaults[‘slider’][‘fullWidth’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 60: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘fullWidth’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 63: <td><?php _e($lsDefaults[‘slider’][‘responsiveUnder’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 65: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘responsiveUnder’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 68: <td><?php _e($lsDefaults[‘slider’][‘layersContainer’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 70: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘layersContainer’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 74: <td><?php _e($lsDefaults[‘slider’][‘hideOnMobile’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 76: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘hideOnMobile’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 79: <td><?php _e($lsDefaults[‘slider’][‘hideUnder’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 81: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘hideUnder’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 84: <td><?php _e($lsDefaults[‘slider’][‘hideOver’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 86: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘hideOver’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 94: <td><?php _e($lsDefaults[‘slider’][‘autoStart’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 96: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘autoStart’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 99: <td><?php _e($lsDefaults[‘slider’][‘startInViewport’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 101: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘startInViewport’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 104: <td><?php _e($lsDefaults[‘slider’][‘pauseOnHover’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 106: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘pauseOnHover’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 110: <td><?php _e($lsDefaults[‘slider’][‘firstSlide’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 112: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘firstSlide’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 115: <td><?php _e($lsDefaults[‘slider’][‘animateFirstSlide’][‘name’], ‘LayerSlider’) ?></t

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 117: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘animateFirstSlide’][‘desc’], ‘LayerSlider’) ?></t

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 121: <td><?php _e($lsDefaults[‘slider’][‘keybNavigation’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 123: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘keybNavigation’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 126: <td><?php _e($lsDefaults[‘slider’][‘touchNavigation’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 128: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘touchNavigation’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 137: <td><?php _e($lsDefaults[‘slider’][‘forceLoopNumber’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 139: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘forceLoopNumber’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 143: <td><?php _e($lsDefaults[‘slider’][‘twoWaySlideshow’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 145: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘twoWaySlideshow’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 148: <td><?php _e($lsDefaults[‘slider’][‘shuffle’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 150: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘shuffle’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 176: <td><?php _e($lsDefaults[‘slider’][‘globalBGColor’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 178: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘globalBGColor’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 192: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘globalBGImage’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 196: <td><?php _e($lsDefaults[‘slider’][‘sliderFadeInDuration’][‘name’], ‘LayerSlider’) ?>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 198: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘sliderFadeInDuration’][‘desc’], ‘LayerSlider’) ?>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 215: <td><?php _e($lsDefaults[‘slider’][‘navPrevNextButtons’][‘name’], ‘LayerSlider’) ?></

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 217: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘navPrevNextButtons’][‘desc’], ‘LayerSlider’) ?></

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 220: <td><?php _e($lsDefaults[‘slider’][‘navStartStopButtons’][‘name’], ‘LayerSlider’) ?><

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 222: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘navStartStopButtons’][‘desc’], ‘LayerSlider’) ?><

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 225: <td><?php _e($lsDefaults[‘slider’][‘navSlideButtons’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 227: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘navSlideButtons’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 231: <td><?php _e($lsDefaults[‘slider’][‘hoverPrevNextButtons’][‘name’], ‘LayerSlider’) ?>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 233: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘hoverPrevNextButtons’][‘desc’], ‘LayerSlider’) ?>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 236: <td><?php _e($lsDefaults[‘slider’][‘hoverSlideButtons’][‘name’], ‘LayerSlider’) ?></t

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 238: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘hoverSlideButtons’][‘desc’], ‘LayerSlider’) ?></t

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 242: <td><?php _e($lsDefaults[‘slider’][‘barTimer’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 244: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘barTimer’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 247: <td><?php _e($lsDefaults[‘slider’][‘circleTimer’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 249: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘circleTimer’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 262: <td><?php _e($lsDefaults[‘slider’][‘thumbnailAreaWidth’][‘name’], ‘LayerSlider’) ?></

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 264: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘thumbnailAreaWidth’][‘desc’], ‘LayerSlider’) ?></

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 268: <td><?php _e($lsDefaults[‘slider’][‘thumbnailWidth’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 270: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘thumbnailWidth’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 273: <td><?php _e($lsDefaults[‘slider’][‘thumbnailHeight’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 275: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘thumbnailHeight’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 279: <td><?php _e($lsDefaults[‘slider’][‘thumbnailActiveOpacity’][‘name’], ‘LayerSlider’)

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 281: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘thumbnailActiveOpacity’][‘desc’], ‘LayerSlider’)

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 284: <td><?php _e($lsDefaults[‘slider’][‘thumbnailInactiveOpacity’][‘name’], ‘LayerSlider’

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 286: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘thumbnailInactiveOpacity’][‘desc’], ‘LayerSlider’

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 293: <td><?php _e($lsDefaults[‘slider’][‘autoPlayVideos’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 295: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘autoPlayVideos’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 298: <td><?php _e($lsDefaults[‘slider’][‘autoPauseSlideshow’][‘name’], ‘LayerSlider’) ?></

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 300: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘autoPauseSlideshow’][‘desc’], ‘LayerSlider’) ?></

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 303: <td><?php _e($lsDefaults[‘slider’][‘youtubePreviewQuality’][‘name’], ‘LayerSlider’) ?

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 305: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘youtubePreviewQuality’][‘desc’], ‘LayerSlider’) ?

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 312: <td><?php _e($lsDefaults[‘slider’][‘imagePreload’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 314: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘imagePreload’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 317: <td><?php _e($lsDefaults[‘slider’][‘lazyLoad’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 319: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘lazyLoad’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 322: <td><?php _e($lsDefaults[‘slider’][‘relativeURLs’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 324: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘relativeURLs’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 331: <td><?php _e($lsDefaults[‘slider’][‘yourLogoImage’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 342: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘yourLogoImage’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 345: <td><?php _e($lsDefaults[‘slider’][‘yourLogoStyle’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 351: <td><?php _e($lsDefaults[‘slider’][‘yourLogoLink’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 353: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘yourLogoLink’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 356: <td><?php _e($lsDefaults[‘slider’][‘yourLogoTarget’][‘name’], ‘LayerSlider’) ?></td>

    Possible variable $lsDefaults found in translation function in slider_edit_settings.php. Translation function calls should not contain PHP variables.
    Line 358: <td class=’desc’><?php _e($lsDefaults[‘slider’][‘yourLogoTarget’][‘desc’], ‘LayerSlider’) ?></td>

    Possible variable $title found in translation function in class-megamenu.php. Translation function calls should not contain PHP variables.
    Line 533: <input type=’checkbox’ value=’active’ id=’edit-<?php echo $key.’-‘.$item_id; ?>’ class=’ <?php echo $key; ?>’ name='<?php echo $key . ‘[‘. $item_id .’]’;?>’ <?php echo $value; ?> /><?php _e( $title ); ?>
    Line 548: <input type=’checkbox’ value=’active’ id=’edit-<?php echo $key.’-‘.$item_id; ?>’ class=’ <?php echo $key; ?>’ name='<?php echo $key . ‘[‘. $item_id .’]’;?>’ <?php echo $value; ?> /><?php _e( $title ); ?>
    Line 565: <input type=’checkbox’ value=’active’ id=’edit-<?php echo $key.’-‘.$item_id; ?>’ class=’ <?php echo $key; ?>’ name='<?php echo $key . ‘[‘. $item_id .’]’;?>’ <?php echo $value; ?> /><span class=’avia_long_desc’><?php _e( $title ); ?></span>

    Possible variable $title found in translation function in class-megamenu.php. Translation function calls should not contain PHP variables.
    Line 533: <input type=’checkbox’ value=’active’ id=’edit-<?php echo $key.’-‘.$item_id; ?>’ class=’ <?php echo $key; ?>’ name='<?php echo $key . ‘[‘. $item_id .’]’;?>’ <?php echo $value; ?> /><?php _e( $title ); ?>
    Line 548: <input type=’checkbox’ value=’active’ id=’edit-<?php echo $key.’-‘.$item_id; ?>’ class=’ <?php echo $key; ?>’ name='<?php echo $key . ‘[‘. $item_id .’]’;?>’ <?php echo $value; ?> /><?php _e( $title ); ?>
    Line 565: <input type=’checkbox’ value=’active’ id=’edit-<?php echo $key.’-‘.$item_id; ?>’ class=’ <?php echo $key; ?>’ name='<?php echo $key . ‘[‘. $item_id .’]’;?>’ <?php echo $value; ?> /><span class=’avia_long_desc’><?php _e( $title ); ?></span>

    Possible variable $title found in translation function in class-megamenu.php. Translation function calls should not contain PHP variables.
    Line 533: <input type=’checkbox’ value=’active’ id=’edit-<?php echo $key.’-‘.$item_id; ?>’ class=’ <?php echo $key; ?>’ name='<?php echo $key . ‘[‘. $item_id .’]’;?>’ <?php echo $value; ?> /><?php _e( $title ); ?>
    Line 548: <input type=’checkbox’ value=’active’ id=’edit-<?php echo $key.’-‘.$item_id; ?>’ class=’ <?php echo $key; ?>’ name='<?php echo $key . ‘[‘. $item_id .’]’;?>’ <?php echo $value; ?> /><?php _e( $title ); ?>
    Line 565: <input type=’checkbox’ value=’active’ id=’edit-<?php echo $key.’-‘.$item_id; ?>’ class=’ <?php echo $key; ?>’ name='<?php echo $key . ‘[‘. $item_id .’]’;?>’ <?php echo $value; ?> /><span class=’avia_long_desc’><?php _e( $title ); ?></span>
    I18N implementation : Proper use of ___all(

    Possible variable $this->post found in translation function in class.ls.posts.php. Translation function calls should not contain PHP variables.

    Line 192: if(is_object($this->post)) { return __($this->post->post_title); }

    Possible variable $ptr found in translation function in pointer.class.php. Translation function calls should not contain PHP variables.
    Line 71: __( $ptr[‘title’] , ‘plugindomain’ ),

    Possible variable $ptr found in translation function in pointer.class.php. Translation function calls should not contain PHP variables.
    Line 72: __( $ptr[‘content’], ‘plugindomain’ )
    Date and time implementation : Use of the_time()

    At least one hard coded date was found in the file loop-search.php. Function get_option( ‘date_format’ ) should be used instead.

    Screenshot : Screenshot file

    Wrong screenshot dimensions. Detected: 700x467px (700:467). Ratio of width to height should be 4:3.

    Info
    Optional files : Presence of rtl stylesheet rtl.css

    This theme does not contain optional file rtl.php.

    Optional files : Presence of front page template file front-page.php

    This theme does not contain optional file front-page.php.

    Optional files : Presence of home template file home.php

    This theme does not contain optional file home.php.

    Optional files : Presence of category template file category.php

    This theme does not contain optional file category.php.

    Optional files : Presence of term template file taxonomy.php

    This theme does not contain optional file taxonomy.php.

    Optional files : Presence of date/time template file date.php

    This theme does not contain optional file date.php.

    Optional files : Presence of attachment template file attachment.php

    This theme does not contain optional file attachment.php.

    Use of includes : Use of include or require

    The theme appears to use include or require : config.php

    Line 20: include(‘admin-options.php’);
    Line 21: include(‘admin-import.php’);
    Line 22: include( ‘woocommerce-mod-css-dynamic.php’);
    If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.
    The theme appears to use include or require : register-dynamic-styles.php
    Line 141: require( AVIA_BASE.’css/dynamic-css.php’);
    If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.
    The theme appears to use include or require : register-admin-options.php
    Line 34: include(‘register-backend-styles.php’);
    Line 37: include(‘register-backend-google-fonts.php’);
    Line 40: include(‘register-backend-advanced-styles.php’);
    If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.
    The theme appears to use include or require : menus.php
    Line 72: include(LS_ROOT_PATH.’/views/skin_editor.php’);
    Line 75: include(LS_ROOT_PATH.’/views/transition_builder.php’);
    Line 78: include(LS_ROOT_PATH.’/views/style_editor.php’);
    Line 81: include(LS_ROOT_PATH.’/views/slider_edit.php’);
    Line 84: include(LS_ROOT_PATH.’/views/slider_list.php’);
    If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.
    The theme appears to use include or require : avia_framework.php
    Line 40: require( ‘php/inc-autoconfig.php’ );
    Line 53: require( AVIA_PHP.’class-superobject.php’ );
    Line 65: require( AVIA_PHP.’function-set-avia-backend.php’ );
    If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.
    The theme appears to use include or require : class-metabox.php
    Line 108: include( AVIA_BASE.’/includes/admin/register-admin-metabox.php’ );
    If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.
    The theme appears to use include or require : inc-autoconfig.php
    Line 139: require( AVIA_PHP.’function-set-avia-frontend.php’ );
    Line 144: require( AVIA_PHP.’class-megamenu.php’ );
    Line 149: require( AVIA_PHP.’avia_shortcodes/shortcodes.php’ );
    Line 154: require( AVIA_PHP.’class-style-generator.php’ );
    Line 159: require( AVIA_PHP.’class-form-generator.php’ );
    Line 164: require( AVIA_PHP.’class-framework-widgets.php’ );
    Line 169: require( AVIA_PHP.’class-breadcrumb.php’ );
    Line 175: require( AVIA_PHP.’class-queryfilter.php’ );
    Line 181: require( AVIA_PHP.’class-sidebar-generator.php’ );
    Line 192: require( AVIA_PHP.’function-set-avia-ajax.php’ );
    Line 197: require( AVIA_PHP.’class-adminpages.php’ );
    Line 202: require( AVIA_PHP.’class-metabox.php’ );
    Line 207: require( AVIA_PHP.’class-htmlhelper.php’ );
    Line 212: require( AVIA_PHP.’class-media.php’ );
    Line 217: require( AVIA_PHP.’class-database-option-sets.php’ );
    Line 222: require( AVIA_PHP.’wordpress-importer/avia-export-class.php’ );
    Line 227: require( AVIA_PHP.’auto-updates/auto-updates.php’ );
    Line 234: require( AVIA_PHP.’class-update-notifier.php’ );
    If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.
    The theme appears to use include or require : class-htmlhelper.php
    Line 1516: if(! @include(AVIA_BASE.$element[‘options_file’]))
    Line 1518: @include($element[‘options_file’]);
    If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.
    The theme appears to use include or require : class-superobject.php
    Line 116: include(AVIA_BASE.’/includes/admin/register-admin-options.php’);
    If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.
    The theme appears to use include or require : function-set-avia-ajax.php
    Line 50: include( AVIA_BASE.’/includes/admin/register-admin-metabox.php’ );
    Line 61: @include($inclusion_link);
    If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.
    The theme appears to use include or require : template-builder.class.php
    Line 297: include($this->paths[‘configPath’].’pointers.php’);
    Line 476: include($this->paths[‘configPath’].’meta.php’);
    If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.
    The theme appears to use include or require : font-manager.class.php
    Line 430: include($config[‘include’].’/’.$config[‘config’]);
    Line 587: @include($config[‘include’].’/’.$config[‘compat’]);
    If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.
    The theme appears to use include or require : meta-box.class.php
    Line 40: require($this->configPath.’meta.php’);
    If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.
    The theme appears to use include or require : config.php
    Line 8: include( ‘event-mod-css-dynamic.php’);
    If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.

    #477222
    Carlos Longarela
    Participant

    Hi, I need create dynamic content in my website, galleries are with external images in flickr and others in our servers via CDN, we create the html that will be include in templates with a custom template inside a enfold child theme, but I’d like to know the html and css classes that I need create for a mansory gallery (or javascript, no problem I can include html, jss, css or php in this template).

    I prove with:

    <div id="av-masonry-1" class="av-masonry noHover av-flex-size av-large-gap av-hover-overlay- av-masonry-col-automatic av-caption-always av-masonry-gallery avia_sortable_active">
    	<div class="av-masonry-entry">
    		<a href="/includes/concurso_06/medianas/edicion_1_foto_113.jpg" title="My Title">
    		<img src="/concurso_06/miniaturas/edicion_1_foto_113.jpg" alt="My Title">
    		</a>
    	</div>
    </div>

    This code will be in a WP page that use custom template. Must I initialize mansory with jquery? or what is the correct div structure and classes?

    Thanks in advance.

    #475327

    Hi Ismael,
    We modified the code a little and rebuilt the gallery using portfolio items that have defined custom links, linking to the image in the gallery….this is working great and once filtered, you can only click through the images in that portfolio category.

    However, the weird thing is that when the gallery first loads, and no sorting options have been clicked, the magnific pop-up looks correct with the avian/enfold theme css attached. But, when a sorting option is clicked, that css disappears and it defaults to the magnific css. Is there a reason the avian classes would be removed after sorting?

    #474294

    Hi!

    try this:

    .avia-image-container.avia-align-left {
    margin-bottom: 17px;
    }
    

    If you need a specific margin for each icon you would need to give them a unique CSS class (turn on custom class for all alb elements).

    Cheers!
    Andy

    #471391

    Ok i have added this code to my style.css.

    .avia-image-container.av-styling-.avia-builder-el-5.avia-builder-el-no-sibling.avia-align-center {
      bottom: -154px;
    }

    it now works an full screen but when i reduce the size of the browser windown it looks like this: http://i.imgur.com/9IXsz61.jpg

    so i will try it out with an custom css class. maybe it works that way.

    can you help me with one other thing. the image here: http://i.imgur.com/z24SPEb.jpg has a custom class “custom-image” that sould allow my images to flow outside the main area of the website (960px widht). but this don`t work. can you check this for me, please?

    http://www.alfaweb.at/testwaldi/kontakt/

    #471350

    Hi!

    You can edit the image in the contact page then adjust the bottom position using css.

    .avia-image-container.av-styling-.avia-builder-el-5.avia-builder-el-no-sibling.avia-align-center {
      bottom: -120px;
    }

    You can replace the css selector with the custom css class. For further modifications, please contact codeable: http://kriesi.at/contact/customization

    Regards,
    Ismael

    #469709
    spidercreations
    Participant

    Hello,
    Thank you for this great theme and your help via these forums. I’ve been able to tweak a lot just by reviewing previous tickets.
    I have an issue with the logo on mobile devices at the website provided in the private link area. Once the screen width is below a certain number of pixels, the theme correctly makes the logo smaller, adds the “hamburger” menu for mobile, and eventually makes the logo smaller. All of that is good.
    But when the logo is made smaller, additional white space is shown below the logo and the content of the page. Note on the home page, I have the slider element turn OFF once a specific width is reached (for small mobile devices).
    I’ve included all of the custom CSS I have added below.
    Suggestions to still have the logo get smaller for mobile devices, but get rid of the extra white space?
    Steve

    .custom_content{
    position: absolute;
    top: 25px;
    right: 25px;
    }
    
    .custom_content { z-index: 999; }
    
    @media only screen and (max-width: 850px) {
    #header_main { height: 140px; }
    .custom_content { top: 80px; }}
    
    .small-preview{ display: none !important; }
    
    /* The following class will SHOW elements when width is below */
    @media only screen and (min-width: 671px) {
    .sig-show-mobile { display: none; }}
    
    /* The following class will HIDE elements when width is below */
    @media only screen and (max-width: 670px) {
    .sig-hide-mobile { display: none; }}
    
    /* Let's get the responsive menu to kick in earlier since it was crunching with logo. */
    @media screen and (max-width: 900px) {
    nav.main_menu { display: none !important; }
    #advanced_menu_toggle { display: block !important; }
    }
    
    /*Get the background of the partner/logo element truly transparent. Images are PNG */
    .main_color .avia-content-slider .slide-image { background: transparent; }
    
    /* Move the main menu down a bit */
    .main_menu ul:first-child > li > a {
        line-height: 225px  !important;
    }
    
    .header-scrolled .main_menu ul:first-child > li > a {
        line-height: 62.5px  !important;
    }
    
    /* Hide the comments column on the 404 error page [sjm 20150706] */
    .error404 .widget_tab_comments { display: none!important; }
    #466604
    connect4consulting
    Participant

    Hi,
    I am trying to replace the Home main menu link with the Entypo Home graphic. I have taken the following steps but there’s a play button showing instead of the home image:

    1) Create a custom menu link with  as the navigation label
    2) Add homeicon avia-font-entypo as a custom css class
    3) Use this in css: .homeicon .avia-menu-text {font-size: 25px!important; font-family: ‘entypo-fontello’;}

    I know the code is something like \ue821 but I’m not sure how to fix this.

    Thanks for your help.
    Gabe

    #458462

    In reply to: CSS help for Enfold

    Hey Brian!

    Thank you for your kind words :)
    1- Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .caption_left .slideshow_caption {
      left: 10%;
    }

    2- Please turn on custom CSS field for ALB elements – http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/ and give your text block element a custom CSS class and then add following code to Quick CSS

    .your-custom-class img {
      border: 1px solid #e2e2e2;
    }

    3-

    #top .avia-logo-element-container .slide-image {
      background: transparent !important;
    }

    Regards,
    Yigit

    #457896

    In reply to: custom image look

    Hey Alexander!

    1- Now that i commented out your custom CSS code in Quick CSS field, image looks 1:1 circle. You can add following code to Quick CSS to give it a white border

    .av-styling-circle .avia_image {
      padding: 10px;
      background-color: white;
    }

    It should look like this – http://i.imgur.com/5FmNyF8.png
    2) A- Please add following code to Functions.php file in Appearance > Editor

    function custom_google_fonts() {
    	wp_enqueue_style( 'Dancing script', 'http://fonts.googleapis.com/css?family=Dancing+Script' );
    }
    add_action( 'wp_enqueue_scripts', 'custom_google_fonts' );

    Then edit your Text block element and give it a custom CSS class and add following code to Quick CSS

    .your-custom-class strong { font-family: 'Dancing Script', cursive !important; font-size: 40px; }

    B, C, D – Please refer to this post and add new font weight – http://kriesi.at/documentation/enfold/register-additional-google-fonts-for-theme-options/ and then change font weight and font size using custom CSS similar to the one above
    E- Not really sure what you meant by L1. Can you please elaborate on the changes you would like to make there?
    3- Please add following code to Quick CSS

    .av-share-link-description {
      text-align: center;
    }

    Cheers!
    Yigit

    #453695

    i did it here on a test environment for me:

    i gave a custom class to the color section (in my case its : background-img-responsive)
    and color section is without no borderstyling but with huge padding
    than goto quick.css and :

    .avia-section.background-img-responsive {
        background-size: cover !important;
    }
    
    .background-img-responsive.avia-section-huge .content {
        padding-bottom: 15% !important;
        padding-top: 15% !important;
    }

    the paddings : you have to play with a little bit (important is that you have choosen “huge padding” for color section)

    you can see the result here (on large screenwidth the overflow is as usual on the bottom.)

    http://webers-testseite.de/enf02/color-section-background-image/

    • This reply was modified 10 years, 7 months ago by Guenni007.
    #453279

    Hi Yigit
    I have made some change in the quck css and I have made a small change in the helper-main-menu.php file as this:
    – Under this line:
    echo avia_logo(AVIA_BASE_URL.’images/layout/logo.png’, $addition, ‘strong’, true);
    – I have add this text:
    echo “<div class=’header-custom-text’></div>”;
    Also – I have activate the custom css alternative for change with the quick CSS.

    My site is finish, can i make a child theme now? I thougt that was to late…

    Best regards Tina

    Thanks, Ismael. That didn’t work, but this does work — just targeting a different class, and using only the min-width, not the width:

    add_action( 'admin_head', 'ava_custom_admin_style' );
    function ava_custom_admin_style() {
    	echo '<style type="text/css">.mce-inline-toolbar-grp { min-width: 0 !important; }</style>';
    }

    The bug is here:
    /wp-content/themes/enfold/config-templatebuilder/avia-template-builder/assets/css/avia-builder.css?ver=4.2.2
    Line 78:
    div.mce-toolbar-grp {min-width:100%;}

    I didn’t want to reset .mce-toolbar-grp to min-width: 0, because I assume Kriesi had some reason for adding that to the css for the editor, so I reset .mce-inline-toolbar-grp, which seems a little more specific to the image editing toolbar.

    Do you see any problems with fixing it this way? Will this affect any other instance of .mce-inline-toolbar-grp in a negative way?

    Hi Josue,

    thanks a lot for your support!
    At the moment, I’m a bit frustrated. My tries to follow your suggestion worked only limited.
    Yes, I could turn on custom CSS class fields as suggested by you by adding add_theme_support('avia_template_builder_custom_css'); to functions.php of “Enfold Child”.
    I entered a value of “ehgrid” (without quotes, a string without special characters) at field “Custom Css Class”.
    And I referenced it at custom.css by

    .ehgrid .av-masonry-entry.av-masonry-item-with-image {
    	min-height: 370px;
    	min-width: 150px;
    }

    As a result the pages with masonry galleries and option “Flexible Masonry” work again as expected, they are now excluded of the new stuff. But my gallery with “Perfect Grid” doesnt’t follow the new mechanism, it falls down to the old problem of unsufficient heights of the pictures.

    My assumption is, there might be a small syntax error in the CSS.
    Josue, can you please prove the CSS code of your last posting to be free of any syntax error?
    Is a leading dot needed or not at the term “av-masonry-entry.av-masonry-item-with-image”?
    Your first CSS code snippet had one, the second one not.
    I tried a lot of combinations, but up to now, none of them works as expected.

    Cheers,

    Eckhard

    • This reply was modified 10 years, 8 months ago by Eckhard. Reason: reduced redundanr fomulation

    Hey idespiran!

    Thank you for using Enfold.

    Do you want to replace the product image with a video? Are you going to do this for all products? It’s possible but you need to add a custom field. Edit the product then go to the Screen Options. Enable the custom field, add a new field called “product_video” then add the youtube url as value. If possible, use this kind of youtube url format: http://www.youtube.com/watch?v=G0k3kHtyoqc

    Add this in the functions.php file:

    add_filter('woocommerce_single_product_image_html','avia_woocommerce_post_thumbnail_description', 10, 2);
    function avia_woocommerce_post_thumbnail_description($img, $post_id)
    {
    	global $post, $woocommerce, $product;
    	
    	$image_title = esc_attr(get_post_field('post_content', get_post_thumbnail_id()));
    	$image_link  = wp_get_attachment_url( get_post_thumbnail_id() );
    	$image  = get_the_post_thumbnail( $post->ID, apply_filters( 'single_product_large_thumbnail_size', 'shop_single' ), array(
    		'title' => $image_title
    		) );
    	$attachment_count = count( $product->get_gallery_attachment_ids() );
    
    	if ( $attachment_count > 0 ) {
    		$gallery = '[product-gallery]';
    	} else {
    		$gallery = '';
    	}
    	
    	$video = get_post_meta( $post->ID, 'product_video', true );
    	$echo = do_shortcode("[av_video src='{$video}' format='16-9' width='16' height='9' custom_class='']");
    
    	
    	if(has_post_thumbnail() && get_post_meta( $post->ID, 'product_video', true )) 
    	{
    		return sprintf( $echo . '<a href="%s" itemprop="image" class="woocommerce-main-image zoom" title="%s"  rel="prettyPhoto' . $gallery . '">%s</a>', $image_link, $image_title, $image);
    	} 
    	elseif(has_post_thumbnail() && empty($video))
    	{
    		return sprintf( '<a href="%s" itemprop="image" class="woocommerce-main-image zoom" title="%s"  rel="prettyPhoto' . $gallery . '">%s</a>', $image_link, $image_title, $image);
    	} 
    	else 
    	{
    		return $img;	
    	}
    }

    In order to make the video bigger, add this in the Quick CSS field:

    .single-product-main-image {
      width: 50%;
    }

    For further modifications, please contact codeable: http://kriesi.at/contact/customization

    Cheers!
    Ismael

    #440048
    Blaahval
    Participant

    Hi there,

    I have a couple of more questions regarding Enfold.

    1) How exactly do the “Custom CSS Class” field work when enabled?

    I have this added to my Quick CSS:

    #fp div.avia_textblock {
    background: rgba(64,251,64,0.85);
    padding: 10px;
    border-radius: 15px; 
    -moz-border-radius: 15px; 
    -webkit-border-radius: 15px; 
    }

    If I add #fp to Section ID all my textboxes in the Color Section get this styling, but if I add #fp to the Custom CSS for only one textbox nothing happens. Am I using this wrong? How do I write it correctly if I want to add this styling to only one textbox, and not all textboxes in a Color Section?

    2) Is it possible to add a background image to a textbox instead of only a RGBA background color like in the code above?

    Kind regards and thanks for all the help,

    Brian

Viewing 30 results - 451 through 480 (of 612 total)