Viewing 30 results - 15,241 through 15,270 (of 16,892 total)
  • Author
    Search Results
  • #320544

    Hi Yigit,
    I get error message every time I try to import fontello zip.

    Below is the message I see:
    Couldn’t add the font. The script returned the following error:
    Fatal error: Class ‘ZipArchive’ not found in/home/cobol/public_html/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/font-manager.class.php on line 107

    Do you know how can I fix the problem?

    Thanks,

    Peter

    #320534
    This reply has been marked as private.
    #320453
    iglschoenwitz
    Participant

    I Just purchased enfold and have a serious problem – after activation of the theme my wordpress crashes completely.

    URL is:
    http://www.rauschenbergstudio.com/AudioConsulting/wp-admin/themes.php?activated=true

    and I get the following error message:
    “Warning: require_once(framework/avia_framework.php) [function.require-once]: failed to open stream: No such file or directory in /homepages/14/d13344583/htdocs/Tonstudio_Rauschenberg/AudioConsulting/wp-content/themes/enfold/functions.php on line 78

    Fatal error: require_once() [function.require]: Failed opening required ‘framework/avia_framework.php’ (include_path=’.:/usr/lib/php5′) in /homepages/14/d13344583/htdocs/Tonstudio_Rauschenberg/AudioConsulting/wp-content/themes/enfold/functions.php on line 78”

    Thanks for quick help
    greets,
    igl

    #320366

    Sorry to annoy again, but if I add this, even with the full Layerslider version included AND the Slider removed from the page, I am getting

    “Fatal error: Call to undefined function post_has_layerslider() in /homepages/20/d217629196/htdocs/wp-content/themes/enfold/config-layerslider/config.php on line 157”

    #320293

    Hi!


    @7miles
    : Why is there a php function there? Where did you add the css snippet? It should be added on the Quick CSS field. Please remove the php code.

    Best regards,
    Ismael

    #320225
    Aussieoutdoor123
    Participant

    Hi there,

    I’ve read through heaps of forums on kreisi & wordpress + others and still can’t fix my issue.

    Firstly, my website domain and email – aussieoutdoorliving.com.au – is hosted through Godaddy.
    I have created a ‘test’ website to replace the current website that is live at the moment. URL test.aussieoutdoorliving.com.au which is an enfold theme wordpress site.

    Before I make the transition (still not sure how I’m going to do that either!) from current website to the new wordpress site i want to get the contact form working as it is what will generate most of our enquiry for clients to purchase my product.

    Currently have two forms on the website – one on the gallery page and one of the contact us page (slightly different with the input fields). Only I have been ‘testing’ the form to see if my domain email address receives it. And with no luck, i don’t ever receive the test form enquiry entries.

    I have done the following to try fix this:

    1. I have installed the contact form 7 – for the life of me i can’t style it and ad the tags to look like the current form which is the default form of enfold (i like the enfold one as its easier for me to make it – not too savvy with tags and code etc) and i’m still not receiving the test entries from this form.

    2. Godaddy email spam settings are all turned OFF just to ensure if that was the case. I’ve spoken to Godaddy about the php and WP mail settings and they’ve mentioned that they’re all enabled and its nothing on their end.

    3. I’ve installed easy WP smpt and have made the email as a gmail account and configured it with the settings (current website that is live is using the gmail account to receive contact form enquiries) but the websites are all totally different.

    So i wonder – is it not working because the wordpress site isn’t ‘hosted’ or essentially ‘live’ like the other one as it is only a subdomain. Is it something completely different and its a fault with the enfold form, contact form and the Easy WP smpt plugin itself?

    I have no clue and I am sooooo close to putting my amazing new wordpress enfold themed website live but i just need this form to work perfectly! any suggestions or walkthrough’s that is easily understandable for someone who does not know a lot about it all would be soooooo appreciated.

    Thank you !!

    #319821

    Topic: Fatal error

    in forum Enfold
    richardwilding
    Participant

    Hi Kriesi,

    I have just transferred a site built in enfold from one server to another using BackupBuddy. The new website works perfectly, but when I try to login to the wp-admin I get the following error:

    Fatal error: Allowed memory size of 41943040 bytes exhausted (tried to allocate 30720 bytes) in /home/bauencor/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon.php on line 174

    Do you know what this problem could be?

    Thanks, Richard

    #319646

    In reply to: Google Adsense

    I got an error with this code..

    function after_breadcrumb_func($content = ""){
            if($context == "page" || $context == "single-portfolio")
    	echo "<div>adsense here</div>";
    }
    add_action('ava_after_content', 'after_breadcrumb_func', 10, 2);

    [16-Sep-2014 06:17:18] PHP Fatal error: Cannot redeclare after_breadcrumb_func() (previously declared in /ph/wp-content/themes/enfold/functions.php:504) in /ph/wp-content/themes/enfold/functions.php on line 523`

    • This reply was modified 11 years, 7 months ago by jalmz.
    #319596

    Hi keesvv!

    Thank you for using Enfold.

    You can use social icons that you don’t usually use like “Vk” then place the url of the page on the Social Icons URL field. Change the icon with this on functions.php:

    add_action('init', 'avia_replace_standard_icon', 10, 1);
    function avia_replace_standard_icon($icons) { 
    	global $avia_config;
    	
    	$avia_config['font_icons']['vk']['icon'] = 'ue877';
    	return $icons;
    }

    You can get the icon code by hovering over the icon element:

    Regards,
    Ismael

    #319462
    zerozendesign
    Participant

    ***EDIT: See below for better method of adding bold font weight***

    To enable a bold font-weight for headings, insert this code into your child theme functions.php file:

    add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
    add_filter( 'avf_google_content_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['GOOGLE FONT NAME HERE'] = 'GOOGLE FONT NAME HERE:400,600,700,800&subset=latin,latin-ext';
    return $fonts;
    }

    ***Leave your Heading Font in the General Settings area set to Default***
    ***Make sure each ‘h tag’ has the corresponding font selected (whichever font you added to in the code above) in the Advanced Styling area***

    Now in your css add the following code to the h tag that you want to use a bold font-weight for:

    h1 {
    font-weight: bold !important;
    }

    OR

    h1 {
    font-weight: bolder !important;
    }

    It make take some time for the changes to take effect. For some reason it took about 24 hours before my font-weights changed. Hope this is helpful.

    • This topic was modified 11 years, 6 months ago by zerozendesign.
    #319249
    Wheelie_NL
    Participant

    Hi guys,

    Thanks for a great theme! Love working with it since it’s very customizable and easy to work with.

    I do have a question tho. When you add subpages to a page the theme has an automatic ”widget” built-in that shows the subpages in the sidebar when you are on either the head- or a subpage. I like this feature but it orders the subpages based on their ID. I believe that it is generated in the sidebar.php at line 27.

    Is there anyway I can change this order?

    Thanks in advance!

    Stefan

    #319219

    I forgot to tell you that I´m using some more code from Yigit in the functions.php to be able to show the categories on the single product page as well, here is the code from the functions.php as it is now:

    <?php
    
    #
    # wrap single product image in an extra div
    #
    add_action( 'woocommerce_before_single_product_summary', 'avia_add_image_div', 2);
    add_action( 'woocommerce_before_single_product_summary', 'avia_close_image_div', 20);
    function avia_add_image_div()
    {
    echo "<div class='four units single-product-main-image alpha'>";
    }
    function avia_close_image_div()
    {
    global $avia_config;
    $avia_config['currently_viewing'] = "shop_single";
    echo "</div>";
    }
    #
    # wrap single product summary in an extra div
    #
    add_action( 'woocommerce_before_single_product_summary', 'avia_add_summary_div', 25);
    add_action( 'woocommerce_after_single_product_summary', 'avia_close_summary_div', 3);
    function avia_add_summary_div()
    {
    echo "<div class='five units single-product-summary'>";
    }
    function avia_close_summary_div()
    {
    echo "</div>"; //close out the summary
    echo "<div class='three units single-product-sidebar'>";
    get_sidebar();
    echo "</div>";
    }
    # end wrap single product image in an extra div
    
    # bring Woocommerce card to bottom on Single Product Pages
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 30 );
    remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 );
    add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 45 );
    add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 60 );
    add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 70 );
    
    # remove related products on Single Product Pages
    function wc_remove_related_products( $args ) {
    return array();
    }
    add_filter('woocommerce_related_products_args','wc_remove_related_products', 10); 

    There is a second question now watching my single product page. Is it possible to move the tabs-output in an extra container to show it under the rest of the product (image, name, price…) with alignment at the left border of the page with stretching 100% towards the sidebar. I´m thinking about css but php would be more appropriate regarding that the rest of the product-showing is also written in php ;)

    Best regards and thank you for your reply,
    Tobias

    #319031

    Hey!

    The thumbnail for masonry entries is controlled on functions.php, look for this code:

    $avia_config['imgSize']['masonry'] 		 		= array('width'=>705, 'height'=>705 , 'crop' => false);		// images for fullscreen masonry
    

    You can change the width and height or use images with the same exact dimension as stated on the thumbnail size which is 705×705. If you don’t want to edit any code, this plugin will help: https://wordpress.org/plugins/simple-image-sizes/

    Regenerate the thumbnails after: http://wordpress.org/plugins/regenerate-thumbnails/

    Cheers!
    Ismael

    #319019
    This reply has been marked as private.
    #318909

    Next Step: due To wp antivirus Protection guard following suspicious files remain:

    Heuristic Logic Report
    Heuristic algorithm has the capability of detecting malware that was previously unknown. It doesn’t give 100% guarantee that the file is the virus and requires manual review. If these files are not a part of plugins, extentions or website, delete or block them.
    If some of the files are listed above in Antivirus Scanner Report, it’s 100% file with malware inside.
    If you are not sure, you always can contact our support and we will analyze the files.

    Total Scanned Files: 7871
    Total Unsafe Files: 9

    File
    /wp-content/plugins/iphorm-form-builder/includes/common.php
    /wp-content/plugins/redirection/ouq.php
    /wp-content/plugins/w3-total-cache/lvp.php
    /wp-content/plugins/eventON/admin/includes/addon_details.php
    /wp-content/plugins/wysija-newsletters/controllers/ajax/config.php
    /wp-content/plugins/wysija-newsletters/controllers/back/config.php
    /wp-content/muell/w3-total-cache/lib/CSSTidy/data.inc.php
    /wp-content/plugins/w3-total-cache/lib/CSSTidy/data.inc.php
    /wp-content/themes/enfold/includes/admin/dummy.php
    These files are not 100% malicious code/scripts, but contain code elements and commands those have been used in different malicious scripts. Review is required.Each file in the report might contain malicious code. If you decided to send us the files for inspection it might take us up to 24 hours to analyze them and provide you with detailed report (The service is available for paid members only).

    I already managed To remove 12 malware files, so far, so good. Let’s See what google thinks about these steps.

    Regards, Sebastian.

    #318809

    Hi,
    using Antivirus, the programm found the following files suspicious:

    – /themes/enfold/config-layerslider/config.php
    $sample_slider = json_decode(base64_decode(file_get_contents(dirname(__FILE__).”/Layer …
    sample_slider = json_decode(base64_decode(file_get_contents(dirname(__FILE__).”/LayerSlider/{$path}{$ …
    //print_r(base64_encode(str_replace(‘avia-samples’,’sampleslider’, …
    … (str_replace(‘avia-samples’,’sampleslider’, base64_decode(file_get_contents(dirname(__FILE__).’/Layer …
    … ia-samples’,’sampleslider’, base64_decode(file_get_contents(dirname(__FILE__).’/LayerSlider/samplesli …

    – /themes/enfold/config-woocommerce/admin-import.php:
    if(isset($id)) $file = get_attached_file( $id );

    – /themes/enfold/functions-enfold.php:
    if(strpos($html, ‘<iframe’) !== false)
    $created = avia_backend_create_file($stylesheet, $styles, true);

    Here is what Google Safebrowsing reports:

    Wie wird musikzentrale.net momentan eingestuft?

    Diese Website ist momentan als verdächtig eingestuft und kann Ihren Computer beschädigen.

    Ein Teil dieser Website wurde aufgrund verdächtiger Aktivitäten in den letzten 90 Tagen 8 mal auf die Liste gesetzt.

    Was ist passiert, als Google diese Website aufgerufen hat?

    In den letzen 90 Tagen haben wir 27 Seiten der Website überprüft. Dabei haben wir auf 10 Seite(n) festgestellt, dass Malware (schädliche Software) ohne Einwilligung des Nutzers heruntergeladen und installiert wurde. Der letzte Besuch von Google war am 2014-09-13. Verdächtiger Content wurde auf dieser Website zuletzt am 2014-09-13 gefunden.

    Die Malware umfasst 127 scripting exploit(s).

    Malware wird auf 3 Domain(s) gehostet (z. B. tyy48.com/, limitlessnewworlds.com/, vertcoin.com.br/).

    Diese Website wurde über 2 Netzwerk(e) gehostet (z. B. AS24940 (HETZNER-AS), AS15169 (GOOGLE)).

    Hat diese Website als Überträger zur Weiterverbreitung von Malware fungiert?

    In den letzten 90 Tagen hat musikzentrale.net scheinbar als Überträger für die Infizierung von 1 Website(s) fungiert, darunter muze1.de/.

    Hat diese Website Malware gehostet?

    Ja. Diese Website hat in den letzten 90 Tagen Malware gehostet. Sie hat 1 Domain(s) infiziert (z. B. muze1.de/).

    Wie ist es zu dieser Einstufung gekommen?

    Gelegentlich wird von Dritten bösartiger Code in legitime Websites eingefügt. In diesem Fall wird unsere Warnmeldung angezeigt.

    Falls Sie der Inhaber dieser Website sind, können Sie eine Überprüfung Ihrer Website hinsichtlich Malware beantragen. Benutzen Sie hierzu die Google Webmaster-Tools. Weitere Informationen über den Prüfprozess erhalten Sie in der Webmaster-Tools-Hilfe.

    I am really helpless facing this problem – since i am not using layer slider – can i delete the config? I was planning to use Woocommerce again …

    Your help is highly appreciated.
    Sebastian

    #318728

    In reply to: thumbnails

    Hi Zakkery!

    Check includes/loop-index.php, line 37.

    Regards,
    Josue

    #318623

    Hey Marvin!

    You’d need to import those images as icons via Fontello, refer to video for that – https://vimeo.com/75743285

    Once you done that you need to add this code to theme / child theme functions.php (change accordingly):

    function avia_add_custom_icon($icons) {
    	$icons['polyvore']	 = array( 'font' =>'fontello', 'icon' => 'ue800');
    	return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    
    function avia_add_custom_social_icon($icons) {
    	$icons['Polyvore'] = 'polyvore';
    	return $icons;
    }
    add_filter('avf_social_icons_options','avia_add_custom_social_icon', 10, 1);

    Regards,
    Josue

    #318595

    In reply to: Simple menu question

    This reply has been marked as private.
    #318562
    FlackUK
    Participant

    Hi Kriesi Team,
    Thank you for this amazing theme and I am loving the customisability and utilisation of this!

    I have read a fair few post regarding this topic and I know their are a few of them upon the forum but unfortunately I just cannot fix it / solve my issue. I do apologise for yet another pricing table colour post.

    First of all I have edited the function.php to allow me to place custom CSS.
    So, I have set within the Table Box the Custom CSS of ‘ffb-pricing

    I have 3 columns upon my page, the middle one is set as highlighted (featured).

    What I am after is…
    Column 1
    Heading row & Border colour: #ECB876
    Pricing row colour & Border colour: #E0A75E

    Column 2 (which is highlighted/featured)
    Heading row & Border colour: #DF9C48
    Pricing row colour & Border colour: #E7943B

    Column 3
    Heading row & Border colour: #cf7c4f
    Pricing row colour & Border colour:#E07A43

    I really hope you can help me out on this customisation and I will be extremely grateful.

    If you require any further information or details please let me know.

    #318531

    Hi!

    Unfortunately, using the function as a shortcode will break the layout of the share section. You can add this on functions.php:

    add_filter('avf_template_builder_content', 'avia_add_social_toolbar_template_builder', 10, 1);
    function avia_add_social_toolbar_template_builder($content = "")
    {
    	if(is_page(2) || is_page(1167)) {
    	$content .= avia_social_share_links(array(), false);
    	$content .= '<div style="height:1px; margin-top:50px;" class="hr"></div>';
    	}
    	return $content;
    }
    
    

    Change the page id on the is_page function to control where you want to show the share section.

    Regards,
    Ismael

    #318510

    Hi Vabel!

    Thank you for using Enfold.

    Yes, the shortlink is being use for the twitter share. If you want to use the actual permalink of the post, you can edit includes > helper-social-media.php. Find this code on line 174:

    $replace['shortlink']	= !isset($this->post_data['shortlink']) ? wp_get_shortlink() : $this->post_data['shortlink'];
    

    Replace it with this:

    $replace['shortlink']	= !isset($this->post_data['shortlink']) ? get_permalink() : $this->post_data['permalink'];
    

    Best regards,
    Ismael

    #318455

    Hi!

    Enfold sollte mit 5.4 und 5.5 einwandferei funktionieren. Ich selbst hoste mit All-Inkl Hosting mit PHP 5.5.16 und MySql 5.6.17. Meine Websites verwenden alle entweder Enfold oder Propulsion.

    Regards,
    Peter

    #317822

    In reply to: Enfold > Font Weight

    Hey!

    Please use this on Quick CSS or custom.css:

    #top .av-main-nav > li > a {
    font-weight: bold !important;
    }

    If that code doesn’t work alone, add this on functions.php:

    function add_opensans_script(){
    ?>
    <link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
    <?php
    }
    add_action('wp_head', 'add_opensans_script');
    

    Best regards,
    Ismael

    #317768

    Hi!

    This could work, add this to the functions.php file:

    add_filter('avf_sidebar_menu_filter', 'avia_add_parent_page_to_sidebar', 10, 3);
    function avia_add_parent_page_to_sidebar($sidebar_menu, $args, $post)
    {
    	$sidebar_menu2 = "";
    
    	$subNav = avia_get_option('page_nesting_nav');
    	
    	
    	$the_id = @get_the_ID();
    	$args 	= array();
    	global $post;
    
    	if($subNav && $subNav != 'disabled' && !empty($the_id) && is_page())
    	{
    	    $subNav = false;
    	    $parent = 750;
    	    $sidebar_menu2 = "";
    
    	    if (!empty($post->post_parent))
    	    {
    	        if(isset($post->ancestors)) $ancestors  = $post->ancestors;
    	        if(!isset($ancestors)) $ancestors  = get_post_ancestors($post->ID);
    	        $root		= count($ancestors)-1;
    	        $parent 	= $ancestors[$root];
    	    }
    
    	    $args = array('title_li'=>'', 'child_of'=>$parent, 'echo'=>0, 'sort_column'=>'menu_order, post_title');
    
    	    //enables user to change query args
    	    $args = apply_filters('avia_sidebar_menu2_args', $args, $post);
    
    	    //hide or show child pages in menu - if the class is set to 'widget_nav_hide_child' the child pages will be hidden
    	    $display_child_pages = apply_filters('avia_sidebar_menu2_display_child', 'widget_nav_hide_child', $args, $post);
    
    	    $children = wp_list_pages($args);
    
    	    if ($children)
    	    {
    	        $default_sidebar = false;
    	        $sidebar_menu2 .= "<nav class='widget widget_nav_menu $display_child_pages'><ul class='nested_nav'>";
    	        $sidebar_menu2 .= $children;
    	        $sidebar_menu2 .= "</ul></nav>";
    	    }
    	}
    
    	$sidebar_menu .= $sidebar_menu2;
    
        return $sidebar_menu;
    }

    Change 750 by the ID of the other page (Markets/Products).

    Cheers!
    Josue

    #317712

    I got this error updating to Enfold 2.9.2

    Fatal error: Call to a member function get() on a non-object in /home/content/78/10708878/html/CCTA/wp-includes/query.php on line 28

    http://calcontrk.org/

    I just updates my theme and got this error
    Fatal error: Call to a member function get() on a non-object in /home/content/78/10708878/html/CCTA/wp-includes/query.php on line 28

    http://calcontrk.org/

    #317617

    Hey Ismael –

    I went ahead and added the custom code to the very bottom of the functions.php file and now i’m getting this error when I try and load the page:

    Parse error: syntax error, unexpected ‘?’ in /home/content/43/11435443/html/UCIROTC/wp-content/themes/enfold/functions.php on line 501

    https://www.dropbox.com/s/k8xth0es78e0o4a/functions.jpg?dl=0

    Please advise.

    #317525

    In reply to: Enfold > Font Weight

    Hi David!

    Insert this code into your child theme functions.php file:

    
    add_filter( 'avf_google_heading_font', 'avia_add_heading_font');
    add_filter( 'avf_google_content_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['Open Sans'] = 'Open Sans:400,600,700,800&subset=latin,latin-ext';
    return $fonts;
    }
    

    If you want to add it to enfold/functions.php insert it directly below this code:

    
    <?php
    global $avia_config;
    

    Afterwards go to Enfold > Theme Options and you should be able to use the 600, 700 and 800 weight too.

    Best regards,
    Peter

    #317471

    In reply to: WordPress SEO crash

    @Yigit: Yep Versie: 1.6 from Yoast.


    @Guenni007
    , do I need to add that in my functions.php?

Viewing 30 results - 15,241 through 15,270 (of 16,892 total)