Forum Replies Created

Viewing 30 posts - 58,291 through 58,320 (of 67,463 total)
  • Author
    Posts
  • in reply to: h1 tag missing #272909

    Hey kimsen!

    Thank you for visiting the support forum.

    We are not SEO experts but please try insert a Special Heading element on pages then set the Heading Type to H1.

    Best regards,
    Ismael

    in reply to: how to remove font version string #272908

    Hi hsie!

    Thank you for visiting the support forum.

    Please edit functions.php, find this code on line 16:

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Below, add the code Dude suggested to remove the version string:

    add_filter('avf_default_iconfont','avia_change_default_icon_font_para', 10, 1);
    function avia_change_default_icon_font_para($fonts)
    {
    $fonts['entypo-fontello']['append'] = '';
    return $fonts;
    }

    Cheers!
    Ismael

    Hey rlmilton!

    Thank you for using the theme.

    You can add this on Quick CSS or custom.css if you want to disable the image overlay for full width sliders:

    .avia-fullwidth-slider span.image-overlay.overlay-type-extern {
    display: none !important;
    }

    Cheers!
    Ismael

    Hey!

    Thank you for the info.

    It sounds like you might be having an issue with a third party plugin or script, WordPress HTTPS, which is quite unusual because a lot of Enfold users who are using the plugin are not having this issue. Regretfully, we cannot provide support for third party plugins or scripts as stated on our support policy. Because of this, any questions you have regarding setup, integration, or troubleshooting any piece of functionality that is not included on the theme package will need to be directed to the plugin author.

    I would try checking with your hosting provider on this particular issue as it sounds like something related to your setup is causing this. Typically, this is due server configuration problems (i.e. underpowered, traceroute issues, packet loss, permissions errors, et cetera). Additionally, your host will be able to diagnose things much better due to the fact that they have a more complete view of your account and can work behind the scenes with you.

    Regards,
    Ismael

    in reply to: Enfold theme won't upload… #272903

    Hi!

    Thank you for using the update.

    Please try to locate the wp-includes folder then right click on the folder where the file resides, click Properties, and make sure the Read Only Attributes is not checked. Just to be sure, please try to do this on wp folders inside the wp root directory.

    Regards,
    Ismael

    in reply to: Transparent header not working #272902

    Hi!

    Thank you for visiting the support forum.

    Can you please check the home page? Is there an element on top of the layer slider? It is somehow creating another container on top of the layer slider.

    Regards,
    Ismael

    in reply to: Error Message #272901

    Hey!

    Thank you for the update

    What is the error when you install the plugin? Have you tried to manually upload the plugin on the wp-content/plugins folder? Make sure that you extract the plugin folder out of the zip file then upload it via FTP.

    Regards,
    Ismael

    in reply to: Font Size #272899

    Hey VictoriousC!

    Thank you for using the theme!

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

    body, body p {
    font-size: 15px;
    }

    You can also change some of the font style on Enfold > Advanced Styling panel.

    Regards,
    Ismael

    in reply to: Main Menu Icons – part2 #271656

    Hi!

    Glad you figured this out. If you have any questions, let us know.

    Cheers!
    Ismael

    Hi Paul!

    Thank you for visiting the support forum.

    You can change the content slider title with this on Quick CSS or custom.css:

    .avia-content-slider .slide-entry-title {
    font-size: 11px;
    color: red;
    }

    Best regards,
    Ismael

    in reply to: 404 page doesn't show up #271653

    Hi!

    Thank you for the info.

    I’m really not sure if I understand the issue correctly. The 404 page is not showing? Do you mind providing a link to your website? The 404 page’s template is located on 404.php and includes > error404.php.

    Regards,
    Ismael

    in reply to: Thumbnails are not resized correctly #271652

    Hey pinzanoaltagl!

    Thank you for using the theme.

    Did you insert the Blog Posts element in order to create the blog? If yes, look for the Preview Image Size then select the second option to manually define the thumbnail size. Select the Medium thumbnail size which is 300x300px in dimension.

    Best regards,
    Ismael

    in reply to: HELP!!! Trying to understand ERROR Message!!!!! #271650

    Hi!

    Thank you for the update.

    Please try to add this on functions.php, place it at the very bottom:

    function avia_session_start() {
    	if (isset($_COOKIE['PHPSESSID'])) {
    		$sessid = $_COOKIE['PHPSESSID'];
    	} else if (isset($_GET['PHPSESSID'])) {
    		$sessid = $_GET['PHPSESSID'];
    	} else {
    		session_start();
    		return false;
    	}
    	
    	if (!preg_match('/^[a-z0-9]{32}$/', $sessid)) {
    		return false;
    	}
    	session_start();
    	
    	return true;
    }

    Now, edit config-templatebuilder > avia-shortcodes > masonry_entries.php. Find this code on line 33:

    if(!is_admin() && !current_theme_supports('avia_no_session_support') && !session_id()) session_start();
    

    Replace it with:

    if(!is_admin() && !current_theme_supports('avia_no_session_support') && !session_id()) avia_session_start();
    

    Cheers!
    Ismael

    in reply to: How do I edit/change and move the mobile toggle? #271648

    Hi johannesdorsey!

    Thank you for using the theme.

    Yes, it is possible to change the direction of the mobile menu but the task falls beyond the scope of support. You need to hire a freelance developer to modify the mobile menu animation for you. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    You can change the mobile menu icon on functions.php. Look for the facebook char codes for example on line 221:

    'mobile_menu'	=> array( 'font' =>'entypo-fontello', 'icon' => 'ue8a5'),
    

    Change the icon char codes ue8a5 to something else. Find the character codes by hovering over the icons when editing any elements with icons on posts or pages:

    We’ll use the char code on the example above but we’ll remove the backslash.

    'mobile_menu'	=> array( 'font' =>'entypo-fontello', 'icon' => 'ue8f4')
    

    I hope that helps.

    Regards,
    Ismael

    in reply to: Menu width #271647

    Hey!

    Thank you for the info.

    Please go to Enfold > Header Layout > Mobile Menu > Header Mobile Menu activation. Select the second option to force the theme to activate the mobile menu earlier. Add this on Quick CSS or custom.css:

    @media only screen and (max-width: 1024px) {
    .av-main-nav > li > a {
    padding: 0 10px;
    font-size: 11px;
    }
    }

    Best regards,
    Ismael

    in reply to: images and font color changes #271646

    Hey ematters1!

    Thank you for visiting the support forum!

    If you don’t mind, please post a screenshot of what you’re trying to do. If I am not mistaken, the modification that you want will not work if you don’t upload images with the same size or dimension. Change the color of the title above the images to charcoal with this on Quick CSS or custom.css:

    .main_color h3 a {
    color: #c9ab99;
    }

    Regards,
    Ismael

    in reply to: pages showing in blogpage #271645

    Hey!

    Thank you for the info.

    If you want to select which categories to show on your news page. First, set the Blog Style on Enfold > Blog Layout to Use the advance layout builder option. Edit the Nieuws page then add the Blog Posts element. Select the categories that you want to show on the news page. I updated your options, you just need to select the categories on the Blog Posts element: http://diaconaalsteunpunt.nl/wp-admin/post.php?post=18&action=edit

    Cheers!
    Ismael

    in reply to: transparent block #271643

    Hi KK!

    Thank you for using the theme.

    That section is created using the advance layout builder. Insert a color section then add a text block inside. Configure the color section option, add a background image then set the attachment to fixed or parallax. This is the content of the text block that you see on the demo:

    <h2 style="text-align: center;">The Office</h2>
    <p style="text-align: center;">We recently moved the team to New York. Here is how it looks like if you work with us</p>
    

    Regards,
    Ismael

    in reply to: Table: add buttons to colums #271641

    Hi alexander-_-!

    Thank you for visiting the support forum!

    Actually, the table rows are the same with the button shortcodes. You can set the columns as Default Columns then add a button shortcode like this:

    [av_button label='Click me' link='manually,http://' link_target='' color='theme-color' custom_bg='#444444' custom_font='#ffffff' size='small' position='center' icon_select='yes' icon='ue800' font='entypo-fontello']
    

    Regards,
    Ismael

    Hi!

    Thank you for the update.

    The avia_load_shortcodes filter only refers to the file located enfold>config-templatebuilder>avia-shortcodes but theme files like includes > loop-index.php should be place on the same folder directory if you want to override it on the child theme.

    Cheers!
    Ismael

    in reply to: Removing Header Transparency #271626

    Hi!

    No, unfortunately, that particular logo feature was built for the forum and re-creating the feature is beyond the scope of support and is not a theme related issue. You might need to find a plugin or hire a freelance developer to add the feature for you. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.

    Cheers!
    Ismael

    in reply to: Problem with Portfolio Grid #271625

    Hi!

    Thank you for the update.

    I don’t see anything wrong with the code. Have you tried flushing the permalink settings? Go to Settings > Permalink then click the “Save” button once. If that doesn’t work, please post the login details here and set it as a private reply. We would like to check it.

    Best regards,
    Ismael

    in reply to: Enfold Theme Won't Reflect Update – Child Theme #271622

    Hey!

    Thank you for the update.

    You’re not seeing the accordion slider on the advance layout builder? Note that the accordion slider is under Meda Elements panel. Please try to remove browser cache then test it again. If possible test it on another browser or computer.

    Regards,
    Ismael

    in reply to: Tooltip – Pop Up / Down #271621

    Hey Alex!

    Thank you for using the theme.

    Yes, that is possible but the task at hand is quite involved. Regretfully, this particular request is beyond the scope of support and is not a theme related issue. You need to hire a freelance developer to add the feature for you. Please visit Envato Studio or Werkpress for further customization. You can also vote or post the feature on our Feature Requests page.

    If you have any further questions about the theme, we are more than happy to provide you with assistance on these inquiries. Thank you for your understanding.

    Regards,
    Ismael

    in reply to: Fullwidth mansory gallery inside tabs #271619

    Hi d!

    Thank you for visiting the support forum!

    Please post the actual page where you place fullwidth masonry inside the tab. We don’t recommend this modification because masonry elements are meant to be full width and in doing so might break the layout of the theme. You might need to investigate this particular issue on your own or hire someone to modify the avia elements for you.

    Cheers!
    Ismael

    in reply to: text color question #271617

    Hey!

    Thank you for the info.

    Do you mind providing an actual link where this is happening? Make sure that you place Yigit’s css snippet at the very bottom of Quick CSS or custom.css. If that doesn’t work please try this:

    h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: black !important; }
    

    Regards,
    Ismael

    in reply to: Avia Layout Builder Not Working #271616

    Hey!

    Thank you for the update.


    @dkg_husse
    : Do you mind providing a screenshot of the issue? When you edit a page then switch to advance layout builder, is it loading endlessly or is it completely blank? If it is the latter, please click Screen Options then enable the Avia Builder option.

    Regards,
    Ismael

    in reply to: WPML Flags and Icon in text boxes #271612

    Hey!

    Thank you for the screenshot.

    Please add this on Quick CSS or custom.css:

    .avia_wpml_language_switch {
    max-width: none;
    width: 500px;
    }
    
    .avia_wpml_language_switch li span.language_translated {
    display: block;
    float: left;
    }
    
    .avia_wpml_language_switch li .language_flag {
    display: block;
    float: left;
    }

    Adjust the width if necessary.

    Regards,
    Ismael

    in reply to: layerslider not working after theme update #271607

    Hi wigglebutt!

    Thank you for using the theme.

    Have you tried uploading the images again? Please delete the image on the Media Library then upload them again on the layer slider.

    Cheers!
    Ismael

    in reply to: error issues with masonry_entries.php on line 33 #271603

    Hi!

    Thank you for using the theme.

    I’m sorry but we’re really not sure of the problem. Do you have Enfold on both sites? Have you tried deleting the session file on the tmp directory?

    Best regards,
    Ismael

Viewing 30 posts - 58,291 through 58,320 (of 67,463 total)