Forum Replies Created

Viewing 30 posts - 59,941 through 59,970 (of 67,155 total)
  • Author
    Posts
  • in reply to: enfold avia-title with badgeOS and buddyPress #235593

    Hi JordanePeters!

    Thank you for the question. I hope all is well with you today.

    I activated the BadgeOS plugin on my end but it doesn’t affect the page titles. I haven’t configured anything. Maybe the BuddyPress plugin is causing the issue which unfortunately is not supported by Enfold. Please contact the plugins’ authors and ask for any insights why this is happening. Post the link of the website here so that we can inspect it.

    Cheers!
    Ismael

    in reply to: Single column portfolio #235589

    Hey DURMAST!

    How are you? I hope you’re doing well today.

    Create a page then insert the Portfolio Grid element. Select “1” for the column options.

    Regards,
    Ismael

    in reply to: Video and parallax #235584

    Hi stenblokken!

    Thank you for using the theme. I hope you’re doing great.

    Can you please give us a link to the website?

    Regards,
    Ismael

    in reply to: how to setup right top & main menu ? #235580

    Hi!

    Thank you for using the theme. I hope you’re doing great.

    Unfortunately, you can’t do that with Enfold. The theme use shortcodes to build a page and does not rely on templates. This is actually possible with wordpress conditionals or css but it will take a lot of modifications. Please hire a freelance developer to create a different header. For further customization, please visit Werkpress.

    Regards,
    Ismael

    in reply to: Google maps Widget – Bug #235569

    Hi!

    I’m sorry you’re having issues with the google map plugin but the sensor parameter is already set. Maybe you can try another google maps plugin such as: http://wordpress.org/plugins/wp-google-maps/

    Regards,
    Ismael

    in reply to: iPad menu display issue #235564

    Hey!

    How are you? I hope you’re doing well today.

    Please post the login details here and set it as a private reply.

    Best regards,
    Ismael

    in reply to: No fonts in 2.6 #235556

    Hey!

    How are you? I hope you’re doing well today.

    Can you please give us a link to the website? Do you have a cache plugin?

    Best regards,
    Ismael

    in reply to: Issue after page edit #235554

    Hey!

    Thank you for the question. I hope all is well with you today.

    I edited the “Homepage Dev” page and it’s not giving me any error. I added a Text Block below just to test it, updated the page, no errors. Maybe the error has something to do with the plugin “Adminimize” which is now deactivated when I checked the site.

    Best regards,
    Ismael

    in reply to: Sidebar and Footer are not displaying #235536

    Hi!

    How are you? I hope you’re doing well today.

    Please edit the slides on the Fullwidth Easy Slider then choose the frame captioned on “Caption Positioning” option.

    Regards,
    Ismael

    in reply to: Fullwith masonry breaking into second column #235529

    Hi!

    Thank you for using the theme. I hope you’re doing great.

    You can actual change the width of the items but it will break the inner layout. Add this on Quick CSS:

    @media only screen and (max-width: 989px) and (min-width: 767px) {
    .responsive .av-masonry-gallery .av-masonry-entry {
    width: 24%;
    }
    }

    Regards,
    Ismael

    in reply to: Slider Like This #235525

    Hi derek62!

    Thank you for using the theme. I hope you’re doing great.

    Looks like you can do that using the “Content Slider”. Link it manually to a page with Blog Posts element configured to show a specific category. If you want to do the same exact thing, please hire a freelance developer to help you. For further customization, please visit Werkpress.

    Regards,
    Ismael

    in reply to: Need help endorsing a bot and modifying basecode #235519

    Hi!

    Try to copy the “nmofactory_helper.html” inside the theme’s folder. Is this script present in your installation? http://webcliente.inmofactory.com/scripts/jsiframe2014.js

    Please use this instead:

    <script type="text/javascript" language="javascript" src="http://webcliente.inmofactory.com/scripts/jsiframe2014.js" ></script>
    <script language="javascript" type="text/javascript">
    parametros.componente = "Buscador";
    parametros.idpublicacion = "NNNN";
    new Ib2c(parametros);
    </script>
    </body>
    </html>

    Please contact the author of the code, ask him for any insights. Honestly, this is beyond the scope of support so you should probably hire a freelance developer to help you.

    Cheers!
    Ismael

    in reply to: Fatal Error and No direct script access allowed #235506

    Hi!

    How are you? I hope you’re doing well today.

    I checked the website but it gives me a 503 Service error. The 2.6 version is available. Please update the theme, maybe it’ll fix the issue you’re having right now.

    Best regards,
    Ismael

    Hi ttem!

    Thank you for the question. I hope all is well with you today.

    You can change the title on the same file that you edited.

    Best regards,
    Ismael

    in reply to: Layer Slider vs. Revolution Slider #235489

    Hey Michael!

    Thank you for using the theme. I hope you’re doing great.

    Actually, the 2.3 update added support for the Revolution Slideshow Plugin. If you have purchased and activated the slider, the theme will add a template builder element for easier usage. Kriesi can answer this better. Please wait for his response.

    Cheers!
    Ismael

    in reply to: Header in Mobiles lost configuration after update #235487

    Hey koelnermusikakademie!

    How are you? I hope you’re doing well today.

    You forget the link to the website. Please post it again.

    Best regards,
    Ismael

    Hi!

    I can’t check this on an iOS device. I’ll ask Josue and Devin to check this. Please wait for their response. I haven’t heard of the same issue from other users.

    Best regards,
    Ismael

    in reply to: IE8 Site Width Problems #234713

    Hey!

    Thank you for using the theme. I hope you’re doing great.

    Please try to add this at the very bottom of custom.css or Quick CSS:

    .container {
    width: 1030px\9;
    }

    If it doesn’t work. Please use this: http://pastebin.com/tXEvsdQq

    Adjust the width if necessary.

    Regards,
    Ismael

    in reply to: Add New Font #234710

    Hey Simon!

    What font are you trying to use? You can only add google fonts to the Enfold > Style > fonts dropdown. Add this on functions.php:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Source Sans Pro'] = 'Source Sans Pro:400,600,800';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['Source Sans Pro'] = 'Source Sans Pro:400,600,800';
    return $fonts;
    }

    Change the Source Sans Pro font with the font you’re trying to use. If you want to use fonts other than google fonts, please search google for font face integration.

    http://www.w3schools.com/cssref/css3_pr_font-face_rule.asp

    Cheers!
    Ismael

    in reply to: top-tel #234709

    Hi aparteDenmark!

    Thank you for using the theme. I hope you’re doing great.

    I checked the website and the phone number is still there. Please remove browser cache then reload the page.

    Best regards,
    Ismael

    Hi WANTED1403!

    Thank you for the question. I hope all is well with you today.

    Please use this plugin to be able to add php code inside the Text Blocks: http://wordpress.org/plugins/insert-php/

    For further customization, please visit Werkpress.

    Best regards,
    Ismael

    in reply to: Zähler wie auf der Homepage (Kriesi.at) #234701

    Hey Sven!

    Thank you for using the theme. I hope you’re doing great.

    I’ll ask Kriesi. Please wait for his response.

    Best regards,
    Ismael

    in reply to: Remove bullits in front of Ajax tree #234700

    Hi!

    Please try this one:

    .page-id-4719 ul.disc, .page-id-4719 .entry-content-wrapper ul {
    list-style: none outside !important;
    }

    Cheers!
    Ismael

    in reply to: Need help endorsing a bot and modifying basecode #234699

    Hi marvalarc!

    How are you? I hope you’re doing well today.

    You should probably add them on footer.php. Find this code at the very bottom:

    </body>
    </html>

    Add the code above.

    <script type=”text/javascript” language=”javascript” src=”http://webcliente.inmofactory.com/scripts/jsiframe2014.js” ></script>
    <script language=”javascript” type=”text/javascript”>
    parametros.componente = “Buscador”;
    parametros.idpublicacion = “NNNN”;
    new Ib2c(parametros);
    </script>
    </body>
    </html>

    Cheers!
    Ismael

    in reply to: Background appearing above color sections #234698

    Hey!

    Alright. Please let us know once the site is live.

    Regards,
    Ismael

    in reply to: LayerSlider version #234697

    Hi hareljann!

    Thank you for using the theme. I hope you’re doing great.

    The current version is Version: 4.6.5 and there is no plan of upgrading it yet. You can use the updated version as a standalone plugin but you need to deactivate the default layerslider. Add this on functions.php:

    add_theme_support( ‘deactivate_layerslider’ );
    

    Best regards,
    Ismael

    in reply to: Mouse over product show filename in stead of ALT tekst #234695

    Hi!

    You can edit js > avia.js to prevent the title from showing. Find this code on line 5:

    $(document).ready(function()
        {
            var aviabodyclasses = AviaBrowserDetection('html');
    

    Add this code below:

    $('#top .product div.images img').attr('title', '');
    

    Regards,
    Ismael

    Hey!

    Glad it worked. :)

    Regards,
    Ismael

    in reply to: How to change in portfolio "All"? #234691

    Hey Soapmarine!

    Thank you for using the theme. I hope you’re doing great.

    Please add this on functions.php:

    add_filter('avf_portfolio_sort_first_label', 'avf_change_portfolio_sort_first_label', 10, 1);
    
    function avf_change_portfolio_sort_first_label($first_item_name) {
    	$first_item_name = __('Todo','avia_framework' );
    	return $first_item_name;
    }

    Best regards,
    Ismael

    in reply to: How to customise template-builder.php ? #234688

    Hi pako69!

    How are you? I hope you’re doing well today.

    The theme is using shortcodes to build a page, template-builder.php is merely a wrapper to hold the shortcode. You can edit the shortcodes on config-templatebuilder > avia-shortcodes folder. Add this on the child theme’s functions.php:

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

    You can create a “shortcodes” folder inside the child theme’s folder then place the shortcodes file inside.

    Best regards,
    Ismael

Viewing 30 posts - 59,941 through 59,970 (of 67,155 total)