Forum Replies Created

Viewing 30 posts - 62,071 through 62,100 (of 66,655 total)
  • Author
    Posts
  • in reply to: Audio Player recommendation please #193821

    Hi Premanjali2!

    I tested http://wordpress.org/plugins/html5-jquery-audio-player/installation/ and the shortcode works properly on a Text Block element. You might need to do some css modifications to make it compatible with the theme. You can visit http://werkpress.com/ and hire someone to modify it for you.

    Cheers!
    Ismael

    in reply to: Featured Images Not Showing On Pages #193817

    Hey!

    It is possible. You can use the Image element instead or use the sliders. :)

    Cheers!
    Ismael

    Hi websitegurus!

    You can add this code in the functions.php

    remove_filter( 'the_content', 'wpautop' );
    remove_filter( 'the_excerpt', 'wpautop' );

    You can also edit the config-templatebuilder > avia-shortcodes > textblock.php, find this code on line 61:

    $params['innerHtml'] = "<div class='avia_textblock avia_textblock_style' data-update_with='content'>".stripslashes(wpautop(trim(html_entity_decode( $params['content']) )))."</div>";
    

    .. then replace it with:

    $params['innerHtml'] = "<div class='avia_textblock avia_textblock_style' data-update_with='content'>".stripslashes(trim(html_entity_decode( $params['content']) ))."</div>";
    

    This should disable the default wpautop function in the text block.

    // http://codex.wordpress.org/Function_Reference/wpautop

    Cheers!
    Ismael

    in reply to: Gallery does not load properly #193814

    Hey Harmen_Schrale!

    I checked the website on Chrome, Firefox and the gallery shows up properly. This is the screenshot:

    Maybe a slow internet connection? You can disable the gallery animation, refer to this link: https://kriesi.at/support/topic/iphone-portrait-mode-for-specific-pages/#post-135338

    Regards,
    Ismael

    in reply to: Header and footer template #193811

    Hi!

    Unfortunately, this will require hours of work. Please hire a freelance developer to do the modifications for you. You can visit http://werkpress.com/.

    Regards,
    Ismael

    in reply to: Partner/logo element #193803

    Hey!

    Did you insert the Logo/Partner element inside a Color Section like the demo? Set the Color Section’s Section Padding to “Small Padding”.

    Regards,
    Ismael

    in reply to: how to change a blog into a masonry blog? #193791

    Hey!

    You should wait for another 12 hours or you can download the theme directly on themeforest.

    Regards,
    Ismael

    in reply to: problem migrating from localhost to the server #193782

    Hi adriaprintweb!

    You can use the Layer Sliders’ Import and Export settings. Have you tried that?

    Cheers!
    Ismael

    in reply to: Problem with installing them Enfold #193729

    Hi!

    It will probably be fixed after you upload it on a live server. Please give us a link to the website when it becomes live.

    Cheers!
    Ismael

    in reply to: table header #193728

    Hey edebe!

    We can’t seem to fix this issue yet. We suggest to disable the responsive css coding for table on mobile view. Edit css > shortcodes.css find this code on 1203:

    @media only screen and (max-width: 767px)
    {
    	.responsive div .avia-data-table table,
    	.responsive div .avia-data-table tbody,
    	.responsive div .avia-data-table tr,
    	.responsive div .avia-data-table td,
    	.responsive div .avia-data-table th{display:block; border-top:none; border-right:none; border-left:none; text-align: center;}
    	.responsive .avia-data-table{border-style:solid; border-width: 1px;}
    	.responsive .avia-data-table .avia-pricing-row .avia-desc-col{text-align: center;}
    	.responsive .avia-data-table .avia-button-row, .responsive .avia-data-table tr:first-child th{display:none;}
    	.responsive .avia-data-table td:before {
    	display:block;
    	font-style: italic; font-size: 11px;
    	}
    
    	.responsive .avia-data-table td {
    		position: relative;
    	}
    }

    We might need to adjust the width of the table after.

    Best regards,
    Ismael

    in reply to: Question about the /blog page? #193726

    Hi!

    Please deselect the page on Theme Options > Where do you want to display the blog? option. Create a page then insert the Blog Posts element. Configure the Blog Content Length to show an excerpt.

    Cheers!
    Ismael

    in reply to: Enfold: gallery pop-up captions #193723

    Hi Niels!

    You can add this on your custom.css or Quick CSS to modify the look of the gallery tooltip:

    .avia-tooltip {
    background: #000;
    background: rgba(255, 3, 4, 0.8);
    color: blue;
    }
    
    .avia-tooltip .avia-arrow {
    background: rgba(255, 3, 4, 0.8);
    border: none;
    }

    Make sure that the background of .avia-tooltip and .avia-tooltip .avia-arrow is the same. :)

    Best regards,
    Ismael

    in reply to: Need 2.4.1 #193721

    Hi DENTICS!

    I’m sorry but the 2.4.1 version is not available and is gone on themeforest. We suggest you keep a copy of the old version before you update to the newest one.

    Cheers!
    Ismael

    in reply to: Avisio to Enfold – Theme changing #193720

    Hi MarcG5!

    Enfold is a completely different theme compare to Avisio. The framework is different and it has become more complicated because of the Advance Layout Editor. You might need to recreate a lot of your content manually.

    Cheers!
    Ismael

    Hey Delphiine!

    What type of Blog Style do you have right now? Can you please give us a link to the blog page? Add this on your custom.css or Quick CSS:

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

    Regards,
    Ismael

    in reply to: Some questions #193717

    Hey tomdeloof!

    1.) You can add this on your custom.css or Quick CSS:

    .news-time {
    display: none;
    }

    2.) Edit framework > php > class-breadcrumb.php, find this code on line 186:

    'before' => '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>',

    Edit includes > loop-index.php, find this code:

    $current_post['content'] = $blog_content == "content" ? get_the_content(__('Read more','avia_framework').'<span class="more-link-arrow"> &rarr;</span>') : get_the_excerpt();

    3.) You can change the color of the iconlist content using this:

    .main_color .iconlist_content {
    color: red;
    }

    Best regards,
    Ismael

    in reply to: reduce space in menu #193714

    Hey Delphiine!

    Can you please give us a link to the page? Are you using a “Small fixed header”?

    You can add this on your custom.css or Quick CSS to move the main menu:

    .main_menu {
    top: 20px;
    }

    You can disable the pink line or hover effect using this:

    .avia-menu-fx {
    display: none !important;
    opacity: 0 !important;
    }

    Best regards,
    Ismael

    in reply to: 2nd level navigation don't work on iPhone / Safari #193712

    Hi german_photographer!

    Let me ask Devin and Yigit to check this on iOS device. Please wait for their response.

    Cheers!
    Ismael

    in reply to: Hide Menu Bar on Single Page #193710

    Hey jvines!

    Can you please give us a link to the page that you want to hide the menus?

    If you want to change the style of a specific element on a certain page or post, you can use the Google Chrome Inspect Element. Look for the unique css body class.

    On the example above, the page’s unique selector is .page-id-2251. We can use it to change the element within that page.

    .page-id-2251 .main_menu {
    display: none;
    }

    Regards,
    Ismael

    in reply to: Icons don't work. #193706

    Hey corky23!

    You’re using a very old version of the theme. Please download the latest version on your themeforest account. Note that there are a lot of changes on the latest update and you may have to recreate some of the elements like iconbox, iconlist etc. Watch this video on how to update the theme via FTP: https://vimeo.com/channels/aviathemes/64927356

    Best regards,
    Ismael

    in reply to: Disable Featured Image on Posts #193702

    Hey jmaguirrei!

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

    .single .big-preview.single-big {
    display: none !important;
    }

    Best regards,
    Ismael

    Hi!

    Glad you finally fixed it. We’ll keep that in mind. Thanks. :)

    Best regards,
    Ismael

    in reply to: Customize Accordion Sortable "All" Tag #193696

    Hi!

    I’m not sure if this is possible with a child theme. I’ll ask Dude.

    Best regards,
    Ismael

    Hi!

    Glad we could help. :)

    Best regards,
    Ismael

    in reply to: widen breadcrumb bar and footer #193692

    Hi awakeningthedivine!

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

    #main {
    padding: 159px 0 !important;
    }

    What changes did you do on the theme? Did you add any css modifications?

    Cheers!
    Ismael

    in reply to: Auto responder with contact form #193691

    Hey jazbird!

    Yes, you can use html codes on the “Autorespond Text” field when using the Contact Form element. You can also use plugins like Contact Form 7 and Gravity Forms.

    Cheers!
    Ismael

    in reply to: layer slider text on mobile #193688

    Hey jazbird!

    Please edit the layer then go to Attribute. Give it a unique css class or id, example “awesome-layer”. Use media queries to hide it on mobile view. Add this on Quick CSS field:

    @media only screen and (max-width: 767px) {
      .awesome-layer {
    display: none !important
    }
    }

    This will hide all layers with “awesome-layer” css class attribute on mobile view.

    Regards,
    Ismael

    in reply to: Mega Menu as dropdown not responding #193686

    Hey Jorge!

    What do you mean by “set the mega menu as dropdown”? Please watch this video on how to properly set up a mega menu: https://vimeo.com/channels/aviathemes/67651241

    Cheers!
    Ismael

    in reply to: Main menu brakes in two lines in ipad #193681

    Hey!

    Hi!

    You can add this on your custom.css or Quick CSS to reduce the font size and padding of the bottom menu:

    .bottom_nav_header.social_header .main_menu ul:first-child>li a {
    font-size: 11px;
    }
    
    .main_menu ul:first-child > li > a {
    padding: 0 11px;
    }

    Cheers!
    Ismael

    Regards,
    Ismael

    in reply to: Reduce column spacing #193676

    Hey!

    Yes, you can remove the “Home” menu item on Appearance > Menus.

    Regards,
    Ismael

Viewing 30 posts - 62,071 through 62,100 (of 66,655 total)