Forum Replies Created

Viewing 30 posts - 60,871 through 60,900 (of 66,075 total)
  • Author
    Posts
  • in reply to: category widget with two columns #203995

    Hey jmalevic!

    I’m not sure if this is possible. Please hire a freelance developer to modify the category widget for you. Can you please give us a link to the page with the category widgets?

    Best regards,
    Ismael

    in reply to: Disable Layerslider failed!!! #203994

    Hey!

    I accessed the website and the LayerSlider panel. It loads fine on my end. I used Chrome Windows 7. Please try to remove browser cache or test it on another browser:

    Cheers!
    Ismael

    in reply to: Fixing the footer #203993

    Hi wallaroomedia!

    Please don’t edit anything on the theme files. Go to Enfold > Footer > Copyright then place the [nolink] tag on the field.

    Cheers!
    Ismael

    in reply to: blank page for editing with Advanced Layout Editor #203606

    Hi!

    Please check on Screen Options if the Avia Layout Builder is ticked. Disable all plugins then check it on another browser.

    Regards,
    Ismael

    Hey odeya!

    This will only work if you’re not using the Advance Layout Builder for your pages. Edit page.php, find this code:

    $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
                        get_template_part( 'includes/loop', 'page' );

    Below, add this code:

    //wordpress function that loads the comments template "comments.php"
                            comments_template( '/includes/comments.php');

    Edit the page then make sure that the Allow Comments option under Discussions box is enabled.

    Cheers!
    Ismael

    in reply to: Blank text blocks in the Avia Layout Builder #203603

    Hi!

    Please check on Screen Options if the Avia Layout Builder is ticked. Disable all plugins then test it on another browser.

    Regards,
    Ismael

    in reply to: Disable Layerslider failed!!! #203602

    Hey!

    Do you have any other plugins installed? Please post the login details here as a private reply. We would like to check it.

    Best regards,
    Ismael

    in reply to: Portfolio viewing issues #203548

    Hi!

    As of now, you can only use the code above to change the order of the portfolio items. You can’t add the breadcrumbs using the Text Block element if that is what you mean.

    Cheers!
    Ismael

    in reply to: color of the Theme Menu #203543

    Hey Seba1973!

    What type of header do you have? Please check on Enfold > Header > Header Type. Inspect the menu using Google Chrome then look for the menu list id. Use it to color a specific menu item:

    .header_color .main_menu ul:first-child > li#menu-item-755 > a {
    color: red;
    }

    Regards,
    Ismael

    in reply to: Video in Layer Slider does not show on Iphone #203506

    Hey Ben!

    It is not showing on iPhone because it is positioned on the right edge of the slider. Edit the video layer then go to Attributes panel. Add a unique css selector id. Example “awesome-video”. Use this on your custom.css or Quick CSS to move the video element to the left.

    @media only screen and (max-width: 767px) {
      #awesome-video {
     left: 150px;
    }
    }

    Cheers!
    Ismael

    in reply to: Fatal Error #203504

    Hi!

    The wp-config.php file should be located on the root folder of your WordPress installation, add the code there.

    define(‘WP_MEMORY_LIMIT’, ’128M’);

    Regards,
    Ismael

    in reply to: Full screen background #203499

    Hey sparkeeey!

    You can use this plugin to insert a full width background: http://wordpress.org/plugins/wp-backgrounds-lite/

    Edit the page then look for Page Attribus > Template > select the “Blank page”. Insert a Color Section and put the content inside.

    Regards,
    Ismael

    Hey!

    Edit config-layerslider > LayerSlider > skins > fullwidth > skin.png, adjust the size of the play button:

    Adjust the width and height of the button using this on your Quick CSS:

    .ls-fullwidth .ls-playvideo {
    width: 100px;
    height: 100px;
    margin-left: -25px;
    margin-top: -25px;
    }

    Best regards,
    Ismael

    in reply to: Portfolio viewing issues #203490

    Hi!

    You can change the order of the portfolio items using this on functions.php:

    function custom_post_grid_query( $query, $params ) {
    $query['orderby'] = 'date';
    $query['order'] = 'ASC';
    return $query;
    }
    add_filter( 'avia_post_grid_query', 'custom_post_grid_query', 10, 2);

    Refer to this link for more order parameters: http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters

    Cheers!
    Ismael

    Hi discover_peppermint!

    Please check if the top menu item has the “Use as mega menu” option ticked. Unchecked the mega menu option.

    Regards,
    Ismael

    Hi michaelhiga!

    How did you add the video? Can you please give us a link to the page with the slider video?

    Regards,
    Ismael

    in reply to: Contact page settings missing address and Contact field #203479

    Hi barrowcreative!

    Can you please give us a link to the Contact page? You can add multiple fields using the Contact Form element. You can also use these plugins: http://wordpress.org/plugins/contact-form-7/ or Gravity Forms

    Cheers!
    Ismael

    in reply to: new slider #203475

    Hi kecster2!

    If the plugin uses shortcode then you can add the shortcode on a Text Block element using the Advance Layout Builder. Make sure that you switch the Text Block element editor to Visual mode. We don’t usually support third party plugins. Please hire a freelance developer if you want it to be fully compatible with the theme.

    Regards,
    Ismael

    in reply to: Can i force the same size for the portfolio items in a grid? #203472

    Hi!

    Yes, defining a minimum height for the grid content should align the images properly. It will depend on the size of the images you’re uploading. Use images with almost the same ratio or dimension.

    Regards,
    Ismael

    in reply to: Promobox Anpassungen #203470

    Hi crevlon!

    You can use the following:

    — The edges of both boxes (inside and outside) should be slightly rounded:

    av_promobox {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    }

    — The font (such as the theme font) and font size:

    .avia-promocontent p {
    font-size: 15px;
    font-family: 'Open Sans', sans-serif;
    }

    — The distance between Promobox and text:

    .av_promobox {
    padding: 20px 30px;
    margin: 70px 0;
    }

    Best regards,
    Ismael

    in reply to: Text wrap around image on ipad #203467

    Hey!

    You can a bottom margin on the icon:

    @media only screen and (max-width: 989px) and (min-width: 768px) {
    .page-id-15 #av_section_2 .alignleft.size-full {
    margin-bottom: 30px;
    }
    }

    Remove browser cache then reload the page.

    Regards,
    Ismael

    in reply to: Disable Layerslider failed!!! #203464

    Hey wholereneducation!

    Please add this on your functions.php:

    add_theme_support( ‘deactivate_layerslider’ );

    You can also find this code on line 392:

    if(!current_theme_supports('deactivate_layerslider')) require_once( 'config-layerslider/config.php' );//layerslider plugin

    Replace it with:

    //if(!current_theme_supports('deactivate_layerslider')) require_once( 'config-layerslider/config.php' );//layerslider plugin

    Install the layer slider plugin after. Remove browser cache or test it on another browser.

    Regards,
    Ismael

    in reply to: Enfold: Best way to link to a specific portfolio category? #203462

    Hey!

    You can copy the whole avia_which_archive function on your child theme’s functions.php.

    Best regards,
    Ismael

    in reply to: Inserting simple Javascript code onto different pages #203461

    Hey phmorgan!

    Please use this plugin: http://wordpress.org/plugins/insert-html-snippet/

    This is will enable you to use javascript codes inside avia elements especially the Text Block element. Refer to this link for more info: http://docs.xyzscripts.com/wordpress-plugins/insert-html-snippet/

    Regards,
    Ismael

    in reply to: Chaging image sizes #203230

    Hi!

    You can use this plugin to manually resize the images at your convenience: http://wordpress.org/plugins/simple-image-sizes/

    Cheers!
    Ismael

    in reply to: ColorBox Incompatibility #203229

    Hey toddgeist!

    You can disable the prettyPhoto plugin entirely. Edit js > avia.js file, find this code on line 54:

    //activates the prettyphoto lightbox
            $(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});

    Replace it with:

    //activates the prettyphoto lightbox
            //$(container).avia_activate_lightbox({callback:'avia_lightbox_callback'});

    You can also refer to Dude’s response here. He is using FancyBox instead of the prettyPhoto lightbox plugin.

    Best regards,
    Ismael

    in reply to: Customize Page Builder #203225

    Hi lherbert!

    There is no documentation yet but you can duplicate an element from the config-templatebuilder > avia-shortcodes folder. Example, duplicate the button.php file. Name it boxes.php as if we’re trying to create a boxes shortcode. Edit the file, look for this code:

    if ( !class_exists( 'avia_sc_button' ) ) 
    {
    	class avia_sc_button extends aviaShortcodeTemplate
    	{
    			/**
    			 * Create the config array for the shortcode button
    			 */
    			function shortcode_insert_button()
    			{
    				$this->config['name']		= __('Button', 'avia_framework' );
    				$this->config['tab']		= __('Content Elements', 'avia_framework' );
    				$this->config['icon']		= AviaBuilder::$path['imagesURL']."sc-button.png";
    				$this->config['order']		= 85;
    				$this->config['target']		= 'avia-target-insert';
    				$this->config['shortcode'] 	= 'av_button';
    				$this->config['tooltip'] 	= __('Creates a colored button', 'avia_framework' );
    				$this->config['tinyMCE']    = array('tiny_always'=>true);
    			}

    Replace it with:

    if ( !class_exists( 'avia_sc_boxes' ) ) 
    {
    	class avia_sc_boxes extends aviaShortcodeTemplate
    	{
    			/**
    			 * Create the config array for the shortcode button
    			 */
    			function shortcode_insert_button()
    			{
    				$this->config['name']		= __('Boxes', 'avia_framework' );
    				$this->config['tab']		= __('Content Elements', 'avia_framework' );
    				$this->config['icon']		= AviaBuilder::$path['imagesURL']."sc-button.png";
    				$this->config['order']		= 86;
    				$this->config['target']		= 'avia-target-insert';
    				$this->config['shortcode'] 	= 'av_boxes';
    				$this->config['tooltip'] 	= __('Creates boxes', 'avia_framework' );
    				$this->config['tinyMCE']    = array('tiny_always'=>true);
    			}

    You’ll see the Boxes shortcode beside the button shortcode on the Advance Layout Builder.

    Regards,
    Ismael

    in reply to: Fatal Error #203224

    Hey oeconomedicus!

    Please increase wordpress php memory limit: http://dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Best regards,
    Ismael

    in reply to: How to get the magnifying feature off of pics? #203221

    Hi!

    You need to edit the file via FTP or your cpanel.

    Regards,
    Ismael

    in reply to: Enfold site on iphone issues #203217

    Hi!

    You can adjust the portfolio ajax control using this:

    @media only screen and (max-width: 767px) {
    .ajax_controlls {
    position: absolute;
    z-index: 100;
    right: 0;
    top: 160px;
    }
    }

    Adjust the bottom position.

    Regards,
    Ismael

Viewing 30 posts - 60,871 through 60,900 (of 66,075 total)