Viewing 30 results - 16,051 through 16,080 (of 16,891 total)
  • Author
    Search Results
  • #229058

    Hey emin!

    Please go to Appearance > Editor and open Header.php file and find

    wp_nav_menu($args);
                                echo '</nav>';

    and add following right below it

    get_search_form();

    Then add following code to Quick CSS in Enfold theme options under Styling tab

    #header  #searchform { float: right; padding-top: 37px; }
    .main_menu { right: 20%; }
    #top #menu-item-search { display: none; }

    Please hire a freelance developer if further customization is needed

    Regards,
    Yigit

    #228702

    In reply to: #Top Link Image Gone

    Hi!

    Please make sure that Footer.php file of your child theme has this same lines at the bottom https://dl.dropboxusercontent.com/u/14975671/bottom.JPG

    Cheers!
    Yigit

    #228650

    <b>Warning</b>: call_user_func_array() expects parameter 1 to be a valid callback, function ‘wc_setup_product_data’ not found or invalid function name in <b>/home/xxx/wp-includes/plugin.php</b> on line <b>507</b>

    <b>Warning</b>: session_start() [function.session-start]: Cannot send session cache limiter – headers already sent (output started at /home/xxx/wp-includes/plugin.php:507) in <b>/home/xxx/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php</b> on line <b>33</b>

    In addition, when activated, s2MemberPro, which requires SSL on certain pages, no longer works and has a “too many redirects” error which when WooCommerce is deactivated, works.

    http://www.divawow.org/membersonly/

    Is the site. I see these errors in Safari and Chrome. Firefox seems to be hiding them. And in CHROME the template appears to be completely broken. Perhaps due to the errors?

    #228626
    mrshaffly
    Participant

    I started having multiple issues with WooCommerce a few days back after they updated. Two distinct problems I’ve been chasing, one being several errors like:
    Warning: call_user_func_array() expects parameter 1 to be a valid callback, function ‘wc_setup_product_data’ not found or invalid function name in /home/xxx/wp-includes/plugin.php on line 507

    And in addition, my s2memberPro which requires SSL during checkout for membership purchases, wouldn’t redirect to the secure page and errored out.

    Today, continuing the chase, after trying to switch themes, which resulted in less call_user_func_array errors, I completely disabled Woo and all of it’s associated plugins. Now the site works as expected, (except for the store of course) as does the SSL pages.

    Are you and Woo on the same page – template wise – with their latest upgrade? And if not, which files are affected so that I may chase down the incompatibilities myself.

    This reply has been marked as private.
    This reply has been marked as private.
    #228122

    I installed the update and the theme is working ok now, but i still get this error when I tried to access wp-admin

    Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 87 bytes) in /home/sylviaon/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/columns.php on line 229

    sylviaontheweb.com

    #228013

    Hey!

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

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>710, 'height'=>270);		                 // big images for blog and page entries
    

    Replace it with:

    $avia_config['imgSize']['entry_with_sidebar'] 	= array('width'=>757, 'height'=>288);		                 // big images for blog and page entries
    

    Regenerate the thumbnails using this plugin: http://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    #228011

    Hi!

    What type of header do you want? If you want to show the language selector on Small Fixed Headers, you can edit header.php again. Find this code on line 187:

    do_action('ava_after_main_menu');
    

    Add the language selector code above.

    Cheers!
    Ismael

    #227950
    fitchimp
    Participant

    Hi, I downloaded some custom fonts from fontello as zip.

    But got this error when trying upload the zip:

    Fatal error: Call to a member function attributes() on a non-object in /nas/wp/www/staging/fitchimp/wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/font-manager.class.php on line 179

    Please help. THanks!

    #227749
    kylehogan
    Participant

    example
    http://i.imgur.com/DH77a29.jpg

    As you can see from the picture I’m getting some strange padding issues within a table. I’m wondering if there is a .css fix or is this something I have to deal with. Any help would be appreciated. Thanks.

    The code looks like this:

    <table class='avia-table avia-data-table avia-table-1  avia-builder-el-1  avia-builder-el-no-sibling '  itemscope="itemscope" itemtype="http://schema.org/Table" >
    						<caption>Filter Featured Properties</caption>
    						<tbody>
    							<tr class='avia-heading-row'>
    								<th class=''>Street Name</th>
    								<th class='avia-desc-col'><?php echo $this->Form->input('Property.dc_street_name', array('label' => false, 'type' => 'text'))?></th>
    								<th class=''>Subdivision</th>
    								<th class='avia-desc-col'>
    									<?php echo $this->Form->input('Property.dc_subdivision_name', array('label' => false, 'type' => 'text'))?>
    									<?php echo $this->Form->hidden('Property.dc_subdivision_id')?>
    								</th>
    								<th class=''>Property Status</th>
    								<th class='avia-desc-col'><?php echo $this->Form->input('Property.dc_property_status_id', array('label' => false, 'type' => 'select', 'escape' => false, 'options' => $property_statuses, 'disabled' => $disable_property_status_select))?></th>
    							</tr>
    							<tr class='avia-heading-row'>
    								<th class=''>Priced From</th>
    								<th class='avia-desc-col'><?php echo $this->Form->input('Property.dc_price_from', array('label' => false, 'type' => 'select', 'options' => $prices_from, 'empty' => false))?></th>
    								<th class=''>Priced To</th><th class=''><?php echo $this->Form->input('Property.dc_price_to', array('label' => false, 'type' => 'select', 'options' => $prices_to, 'empty' => false)) ?></th>
    								<th class=''>Sort By</th>
    								<th class=''><?php echo $this->Form->input('Property.order', array('label' => false, 'type' => 'select', 'options' => $orders, 'empty' => false))?></th>
    							</tr>
    						</tbody>
    					</table>
    					<div style="text-align: right">
    					<?php echo $this->Form->submit('Filter Listings')?>                   
    					<?php echo $this->Form->end()?>
    #227585

    Hi Josue,

    Thanks very much for pointing me into the right direction! Before you read the rest of my reply, I’d like to say that
    1) I am not a programmer
    2) I have _A LOT_ of respect for programmers, and I know that good programming takes a lot of skills!
    3) in the past I’ve sometimes (not always) managed to find ways of doing things by a little “trial and error” programming. That’s why I thought I would give it a try to modify some of the php files, although I really don’t have much of a clue ;)

    My modifications didn’t work, but I think I _nearly_ got there… Maybe someone from the Kriesi team can help out? I’m pretty sure I’m not the only one who has a need for a product slider (and product grid) which displays tags instead of categories…

    Anyway. Here’s what I have done
    1) I’ve duplicated productslider.php and named it productslider_tags.php
    2) in productslider_tags.php, I’ve searched & replaced all instances of “av_productslider” and renamed it to “av_productslider_tags” (Code lines 10, 15, 17, 25, 30)
    3) replaced all instances of “product_cat” with “product_tag” (which according to WooCommerce Codex is for the “tags” taxonomy)

    The result:
    There is now a “Productslider Tags” shortcut in the Avia Visual Editor, and when I drag it into my layout, I can choose a tag instead of a category from the list. Great!
    But on the front end, it says “No products found which match your selection.”

    It’d be great if you could help with this – or maybe even better: add it to a future update :)

    Thanks a lot for your support!

    #227312

    In reply to: Disable cart

    This reply has been marked as private.
    #226991

    In reply to: Contact form

    Hi!

    Try the following, open framework/php/class-form-generator.php and add this around line 658:

    $message .= "User has submitted following information:";
    

    If that doesn’t work, you’d need to rely on other options like CF7 with allows you to do this out of the box.

    Best regards,
    Josue

    #226937
    This reply has been marked as private.
    #226864
    ceubri
    Participant

    hello,
    i modify the right sidebar width with (in fuction.php) :
    $avia_config['layout']['sidebar_right'] = array('content' => 'ten alpha', 'sidebar' => 'two', 'meta' => 'one alpha', 'entry' => 'seven');

    But i would like to add this to my child theme.
    I look to http://codex.wordpress.org/Child_Themes and to https://vimeo.com/channels/aviathemes/67221517
    but i don’t understand…

    Can you help me ?

    #226849

    In reply to: header / menu

    This reply has been marked as private.
    #226796

    Hi!

    Please download pre-built child theme here http://kriesi.at/documentation/enfold/using-a-child-theme/ so we can make sure that there is not wrong with your child theme
    Please also make sure that footer.php file in your child theme has the sames line on bottom https://dl.dropboxusercontent.com/u/14975671/bottom.JPG

    Best regards,
    Yigit

    • This reply was modified 12 years, 1 month ago by Yigit.
    #226754
    silluf
    Participant

    I updated to the latest version of wordpress but now the slider does not work and I get the message that jquery library needs to be updated.

    However, when I try to get into admin I get this message: Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 30720 bytes) in /home/sylviaon/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/productslider.php on line 210

    When I check the account of sylivaontheweb there is still enough bandwidth.

    What to do?

    Sylvia

    #226597

    Hey BelIblis!

    This one have the Class that creates the HTML for both product slider and product grid:
    /config-templatebuilder/avia-shortcodes/productslider.php (line 167).

    You may also want to take a look at this, although this only handles the shortcode options you see in ALB:
    /config-templatebuilder/avia-shortcodes/product_grid.php

    Cheers!
    Josue

    #226440

    In reply to: Unable to make changes

    Hey!

    1-Dot was missing in front of the class. Please add it Quick CSS as following

    .post-meta-infos { display: none; }

    2- Please refer to https://kriesi.at/support/topic/remove-blog-from-title-bar/#post-182579
    3- Please go to Settings > Reading and check "Summary" in "For each article in a feed, show" and add following code to Functions.php file

    function custom_excerpt_length( $length ) {
    	return 20;
    }
    add_filter( 'excerpt_length', 'custom_excerpt_length', 999 );

    Cheers!
    Yigit

    #226347
    fgsfalco
    Participant

    I’m unable to upload additional Fontello fonts using the zip file provided from fontello.com.. I have tried multiple fonts as well as a single font using different browsers. Is there a directory I can manually add fonts too bypassing the uploader?

    Couldn’t add the font.
    The script returned the following error:
    Warning: simplexml_load_string() [function.simplexml-load-string]: Entity: line 1: parser error : Space required after the Public Identifier in /wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/font-manager.class.php on line 177

    Warning: simplexml_load_string() [function.simplexml-load-string]: <!DOCTYPE HTML PUBLIC “-//IETF//DTD HTML 2.0//EN”> in /wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/font-manager.class.php on line 177

    Warning: simplexml_load_string() [function.simplexml-load-string]: ^ in /wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/font-manager.class.php on line 177

    Warning: simplexml_load_string() [function.simplexml-load-string]: Entity: line 1: parser error : SystemLiteral ” or ‘ expected in /wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/font-manager.class.php on line 177

    Warning: simplexml_load_string() [function.simplexml-load-string]: <!DOCTYPE HTML PUBLIC “-//IETF//DTD HTML 2.0//EN”> in /wp-content/themes/enfold/config-templatebuilder/avia-template-builder/php/font-manager.class.php on line 177

    #226196

    Hey!

    Please open Header.php file in Appearance > Editor and find

    <html <?php language_attributes(); ?> class="<?php echo " html_$style ".$responsive." ".$headerS;?> ">

    and change it to

    <html <?php language_attributes(); ?> class="<?php echo " html_$style ".$responsive." ".$headerS;?> " style="<?php if(is_page(4017)) { echo 'background: none;'; } ?>">

    Regards,
    Yigit

    #226067

    In reply to: disappear title

    Hi aquatucker!

    Insert this code into your functions.php file:

    
    add_filter('avf_logo_subtext', 'kriesi_logo_addition');
    function kriesi_logo_addition($sub)
    {
    	$sub .= "<strong class='logo-title'>My Text</strong>";
    	$sub .= "<strong class='logo-title logo-subtitle'>Another custom text line</strong>";
    	return $sub;
    }
    

    and replace the “My Text” text and “Another custom text line” with your custom text. Then insert this code:

    
    #top .logo-subtitle {
    color: #aaa;
    top: 7px;
    }
    
    #top .logo-title {
    transition: opacity 0.4s ease-out;
    -moz-transition: opacity 0.4s ease-out;
    -webkit-transition: opacity 0.4s ease-out;
    -o-transition: opacity 0.4s ease-out;
    font-size: 12px;
    color: #000;
    position: absolute;
    left: 7px;
    top: -7px;
    opacity: 1;
    white-space: nowrap;
    }
    
    #top .subtext {
    float: left;
    position: relative;
    }
    
    #top .header-scrolled .logo-title {
    opacity: 0;
    filter: alpha(opacity=0);
    }
    

    into the quick css field.

    Cheers!
    Peter

    #225891

    Hey gmmediadienste!

    Please go to wp-content\themes\enfold\config-templatebuilder\avia-shortcodes folder and open logoslider.php file and find this code in 465th line and add rel=’nofollow’ as shown in screenshot https://dl.dropboxusercontent.com/u/14975671/nofollow.JPG

    Regards,
    Yigit

    • This reply was modified 12 years, 1 month ago by Yigit.
    #225798
    jrcohen81
    Participant

    Hi there,

    I recently changed my wordpress theme to Enfold, and I love it! So beautiful and sleek. I went to create a new menu yesterday, and noticed this Catchable fatal error: Object of class WP_Error could not be converted to string in /data/17/3/129/7/3129985/user/3491951/htdocs/wp-includes/formatting.php on line 525 when I tried to create new navigation. Also the screen looks totally bizarre and nothing like the normal WordPress menu screen. Any thoughts as to what might have happened in the change and how to resolve so that I might add more in my navigation?

    Best,

    Jaimie

    #225635
    charger70
    Participant

    here is the site: http://www.langersdeli.com

    i cannot log in – the following errors appear:

    
    Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/content/12/4178712/html/wp-includes/general-template.php:2460) in /home/content/12/4178712/html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33
    
    Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/content/12/4178712/html/wp-includes/general-template.php:2460) in /home/content/12/4178712/html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33
    
    Warning: Cannot modify header information - headers already sent by (output started at /home/content/12/4178712/html/wp-includes/general-template.php:2460) in /home/content/12/4178712/html/wp-login.php on line 415
    
    Warning: Cannot modify header information - headers already sent by (output started at /home/content/12/4178712/html/wp-includes/general-template.php:2460) in /home/content/12/4178712/html/wp-login.php on line 427

    it was fine last night – today, broken or maybe intrusion? help would be appreciated.

    #225552

    Hey Stingery!

    Please edit includes > loop-index.php, find this code on line 70:

    $featured_img_desc = get_post_field('post_content', get_post_thumbnail_id());
    

    Replace it with:

    $featured_img_desc = get_post_field('post_title', get_post_thumbnail_id());
    

    Best regards,
    Ismael

    #225539

    Ok, I am with some of that but not all of it.

    I have:

    1) duplicated loop-index.php and renamed it to loop-report.php
    2) amended the code in blog.php on line 279 to read :

    if(!is_page( 'report' )) {
    				get_template_part( 'includes/loop', 'report' );
    				} else {
    				get_template_part( 'includes/loop', 'index' );
    				}

    Here is the bit I dont get…. I do not have a page id to add here. I am only having trouble when looking at the post itself (single.php ?) of the cpt named report. If I understand the code you suggested correctly, I am asking if is NOT page ‘report’, get the me the index loop. if it is, get me the report loop. But, there is no page ID for a single post I can use as I would like this to take effect for all future posts into any category inside the cpt reports.

    Please have a look at the dev site for clarification:
    http://dev.lolhatespeech.com/offender-registry/ – bread crumb reads ‘Offender Register’ (page with avia blog post layout – Says what I want)
    http://localhost/report-cat/racism/ – bread crumb reads ‘Archive for: Racism’ (Archive view for category of Reports CPT – say what I want)
    http://localhost/report/racist-3-2/ – bread crumb reads ‘Blog’ (Single Post – does NOT say what I want)

    Thanks for any further suggestions/clarification, I am probably being stupid and missing something simple.

    #225092

    Hi Ismael,
    thank you for your tip. The error messages within the Enfold Avia Layout Architekt disappeared, but I have already the problem that the meta description below the website title at the google search is an error message:

    Notice: Undefined offset: 1 in /webspace/12/79878/ubercreative.me/wp-content/themes/enfold/framework/php/function-set-avia-frontend.php on … Ubercreative.

    Do you have any ideas how I can fix this problem?

    Cheers, Wiebke

Viewing 30 results - 16,051 through 16,080 (of 16,891 total)