Forum Replies Created

Viewing 30 posts - 24,451 through 24,480 (of 25,536 total)
  • Author
    Posts
  • in reply to: Top bar #715839

    Hey!

    Can you post here or in pastebin the facebook code?

    Regards,
    Nikko

    in reply to: Contact Form #715835

    Hey!

    Sorry for the late response, I really couldn’t see any issue on my end, I am using iphone 4s to check the issue. Can you try to add this code in Quick CSS (located in Enfold > General Styling):

    @media screen and (-webkit-min-device-pixel-ratio:0) {
    	#top .avia_ajax_form .text_input:focus,
    	#top .avia_ajax_form .select:focus,
    	#top .avia_ajax_form .text_area:focus {
    		font-size: 14px !important;
    	}
    }

    If this doesn’t work, try deactivating all plugins and check if the zooming still appears.

    Regards,
    Nikko

    in reply to: HTTP Error when uploading images #715824

    Hey!

    Thanks I’ve tested it and it uploads successfully using small images but uploading large ones have this error:
    Failed to load resource: the server responded with a status of 500 (Internal Server Error) yourwebsite/wp-admin/async-upload.php
    It seems there is a memory exhaustion, please refer to wordpress codex on how to increase memory limit: https://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP if that doesn’t work try contacting your host to increase the memory limit.

    Best regards,
    Nikko

    in reply to: Centering Icon On Custom Separator On Mobile Devices #715814

    Hi!

    Thanks for providing the link, kindly add this code in Quick CSS (located in Enfold > General Styling):

    @media only screen and (max-width:767px) {
      .hr-custom.hr-icon-yes.hr-center .hr-inner {
        width: 35% !important;
      }
    }

    Let us know if it works :)

    Cheers!
    Nikko

    in reply to: Search Does not Work #715810

    Hey!

    Can you give us temporary admin access? so we can inspect this issue further. Please put the details in the “private content” when you reply.

    Best regards,
    Nikko

    in reply to: Social Media icon #715809

    Hey!

    I can confirm the code is there by inspecting with google web inspector however it seems it doesn’t run because of the can you try to replace all of it with
    "
    If it’s still not working, please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.

    Cheers!
    Nikko

    in reply to: Portfolio Custom Link target="_blank" #715807

    Hi,

    Glad we could help!
    We really appreciate it if you rate our theme on themeforest, Thank you for using Enfold :)

    Best regards,
    Nikko

    in reply to: Animated Count Down not working #715706

    Hi!

    Glad we could help :)

    Cheers!
    Nikko

    in reply to: Changed Permalinks and get 404 Error #715705

    Hi!

    Glad we could help :)

    Best regards,
    Nikko

    in reply to: Tables Not working properly #715650

    Hi,

    The code I gave doesn’t reflect on the page, please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Nikko

    in reply to: Place full with buttons at the bottom of column #715649

    Hey Phil!

    Sure. We’ll just leave this thread open :)

    Regards,
    Nikko

    in reply to: Replace social icons with text #715643

    Hi,

    Try to create includes folder in your child theme then copy helper-social-media.php and past it in the newly created folder and edit the file.

    Best regards,
    Nikko

    in reply to: WordPress Failure Notice #715638

    Hi,

    Can you try to upload the theme via ftp, you can find the instructions here: http://kriesi.at/archives/the-complete-guide-to-updating-enfold

    Best regards,
    Nikko

    in reply to: How to have a custom menu separator? #715636

    Hi,

    Thanks for your kind words :) We really appreciate it if you rate our theme on themeforest.
    Thank you for using Enfold :)

    Best regards,
    Nikko

    in reply to: Removing tag / category links in footer without css #715627

    Hi,

    Glad we could help!
    We really appreciate it if you rate our theme on themeforest https://themeforest.net/downloads

    Best regards,
    Nikko

    in reply to: Changed Permalinks and get 404 Error #715626

    Hi!

    Thanks for providing the ftp details you can now remove it or change password. It should be fixed now, I have set your permalinks to Post Name and it’s working fine now, let us know if it’s good on your end also :)

    Cheers!
    Nikko

    in reply to: REMOVE BLANKING ON THE HEADER #715621

    Hey!

    Glad we could help :)

    Regards,
    Nikko

    in reply to: Animated Countdown won't display #715617

    Hey!

    Can you try to re-update the Enfold theme via ftp, instructions can be found here: http://kriesi.at/archives/the-complete-guide-to-updating-enfold
    If it’s still not working can you give us ftp access? so we can check it further.

    Cheers!
    Nikko

    in reply to: clear post autor #715612

    Hey velkovinoteka!

    Try adding this code in Quick CSS(located in Enfold > General Styling):

    #top span.blog-author.minor-meta, #top span.text-sep.text-sep-comment {
        display: none !important;
    }

    Hope this helps :)

    Best regards,
    Nikko

    in reply to: REMOVE BLANKING ON THE HEADER #715609

    Hi mleite1!

    Try to add this code in Quick CSS (located in Enfold > General Styling):

    .avia-fullwidth-portfolio .sort_width_container {
        display: none !important;
    }

    Hope this helps :)

    Best regards,
    Nikko

    in reply to: Blog tags on bottom of post #715608

    Hi!

    Can you post a screenshot on your end? I checked the site and the code I gave reflects properly on my end.

    Best regards,
    Nikko

    in reply to: Removing tag / category links in footer without css #715604

    Hey!

    There’s no function that can remove it, you need to edit it in enfold\wp-content\themes\enfold\includes\loop-index.php and remove this code in line 268-273:

    if(has_tag())
                	{
                    	echo '<span class="blog-tags minor-meta">';
                    	the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
                    	echo '</span></span>';
                	}

    and enfold\includes\loop-portfolio-single.php line 41-46:

    if(has_tag() && is_single())
    				{
    					echo '<span class="blog-tags minor-meta">';
    					the_tags('<strong>'.__('Tags:','avia_framework').'</strong><span> ');
    					echo '</span></span>';
    				}

    If you are using a child theme, create includes folder and copy both files above then remove/modify the code. Hope this helps :)

    Best regards,
    Nikko

    in reply to: Active Menu & Submenu Items #715600

    Hey!

    You can use this code for parent page:

    #avia-menu .current-page-parent > a,
    #mobile-advanced li.current-page-parent > a {
        color: #66b255 !important;
    }

    Let us know if it works ;)

    Regards,
    Nikko

    in reply to: Replace social icons with text #715597

    Hi mdxclr!

    You should find it in enfold\includes\helper-social-media.php line 83:
    $html .= "<a href="'".$icon['social_icon_link']."'" title="'".ucfirst($icon['social_icon'])."'"><span class='avia_hidden_link_text'>".ucfirst($icon['social_icon'])."</span></a>";
    Hope this helps.

    Cheers!
    Nikko

    • This reply was modified 8 years, 1 month ago by Nikko.
    in reply to: Social Media icon #715595

    Hi!

    Code Block is similar to a Text Block but doesn’t have the Visual Editor and as the name implies it’s a section/block where you can place your code. Just add it by dragging or click the Code Block then paste in your code, save it and Update the page :)

    Regards,
    Nikko

    in reply to: Contact form #715585

    Hey!

    Glad it’s fixed :)

    Cheers!
    Nikko

    in reply to: WordPress Failure Notice #715580

    Hi,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Please also include ftp access, so we can check the files.

    Best regards,
    Nikko

    • This reply was modified 8 years, 1 month ago by Nikko.
    in reply to: Search Does not Work #715577

    Hey!

    No, inside WordPress Dashboard, go to Appearance > Editor > select functions.php.

    Best regards,
    Nikko

    in reply to: Enfold Youtube Preview Image #715575

    Hi,

    Since it doesn’t work on your end please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    Login credentials include:

    • The URL to the login screen.
    • A valid username (with full administration capabilities).
    • As well as a password for that username.
    • permission to deactivate plugins if necessary.

    Best regards,
    Nikko

    in reply to: How to have a custom menu separator? #715574

    Hey mterrianrode!

    Yes, it’s possible, try to add this in your Quick CSS:

    ul#avia-menu > li > a:after {
        content: '/';
        display: inline-block;
        position: relative;
        left: 13px;
    }
    
    ul#avia-menu > li:last-child > a:after {
        display: none;
    }

    Hope this helps :)

    Cheers!
    Nikko

Viewing 30 posts - 24,451 through 24,480 (of 25,536 total)