Viewing 30 results - 16,321 through 16,350 (of 16,888 total)
  • Author
    Search Results
  • #196346

    In reply to: Contact Form 7 issues

    Hey!

    I performed a test with the default Theme active and the error showed up, the issue is not theme-related, you’d need to contact your hosting provider, tell them the php mail() function is not working.

    Regards,
    Josue

    #196250

    Topic: FAQ accordion conflict

    in forum Enfold
    lordvadar10
    Participant

    Hey all,
    See this page:
    http://worldclass.io/?page_id=1277
    And the warning message coming up on-screen:
    Notice: Undefined variable: toggle_atts in /var/www/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/toggles.php on line 264

    Any suggestions for a fix?

    • This topic was modified 12 years, 4 months ago by lordvadar10.
    #196237
    HuxburyQuinn
    Participant

    Hi Another Breadcrumbs topic.
    It seems most topics on Breadcrumbs are closed for comments

    PORTFOLIO BREADCRUMB

    https://kriesi.at/support/topic/issue-with-breadcrumbs-on-portfolio-pages/

    So I have a changed the PORTFOLIO SLUG (portfolio-item) in THEME / GENERAL SETTINGS to (location)

    But my portfolio-single has a breadcrumb that reflects the top main menu navigation

    so I added the following php to functions.php in my child theme

    
    add_action('after_setup_theme','avia_remove_portfolio_breadcrumb');
    function avia_remove_portfolio_breadcrumb(){
    remove_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb');
    }
    

    Now my breadcrumb reflects the portfolio categories – Great! – however

    Q1 : I’d like to change the order that the categories appear in the breadcrumb
    Installing the following plugins has no effect on the custom post type PORTFOLIO
    plugin :: Category Order and Taxonomy Terms Order
    plugin :: Post Types Order

    Q2: the Breadcrumb URL for the Parent Category uses /portfolio-entries/ and not the custom slug /location/

    yes I have read the post here
    https://kriesi.at/support/topic/problem-with-breadcrumbs-in-firefox/#post-185097
    but it does not explain this issue
    + ———————————————————————- +
    PAGE BREADCRUMB
    I have a habit of creating a clean backend for all pages so that pages can be grouped by top level parent menu headings – About Us | Services | Products etc
    I then add sub pages under each parent page to reflect my top level drop down navigation
    ABOUT US
    Our Profile
    Our Mission
    Our Team
    I general do not have the top level parent menu item linking to a page by it’s own name.
    The reason for this is that the pages are for admin organisation of pages only.

    To negate this – I make all parent menu items link the first page of the drop down menu
    ABOUT US
    Our Profile
    Our Mission
    Our Team
    So ABOUT US actually links to Our Profile

    This can be done in 2 ways using :: Appearance/Menus
    1. use LINKS and add a URL link and add a custom link text
    2. add a duplicate of Our Profile and rename the menu Navigation Label <- I use this one!

    Q3: After using alot of other themes and theme frameworks for the first time ever I find that the – ENFOLD page breadcrumbs – does not reflect the URL links of the main menu navigation. I.e. the menu Navigation Label

    Breadcrumb: Home / About Us / Our Profile

    About Us – links to the blank page which we created – when actually it should link to Our Profile – Given that About Us is actually Our Profile with a different Navigation Label.

    The Page Breadcrumb does not reflect the Main Menu Navigation Labels and links.
    How do I fix this?

    + ———————————————————————- +
    SIDE BAR PAGE MENU

    So I have turned on ENFOLD / SIDEBAR / Page Sidebar navigation
    Display a sidebar navigation for all nested subpages of a page automatically?

    This is Great – and it does it automatically – Yeah!

    Q4: Now How do I go about change the display order to reflect the order in my Main Menu
    Could you add a new metabox for this option – to set the display order – so it matches my Main Menu

    Your assistance in these topics would be greatly appreciated.

    #196184
    This reply has been marked as private.
    #195915

    Hi Ismael,

    The code to insert Flash I am using is:
    <object id=”myFlashContent” width=”614″ height=”386″ classid=”clsid:D27CDB6E-AE6D-11cf-96B8-444553540000″><param name=”movie” value=”http://blueunderground.com/flash/therrien-waddell-614.swf&#8221; /><!–[if !IE]>–><object width=”614″ height=”386″ type=”application/x-shockwave-flash” data=”http://blueunderground.com/flash/therrien-waddell-614.swf”>&lt;!–<![endif]–><!–[if !IE]>–></object><!–<![endif]–></object>

    This works fine in the static environment at http://blueunderground.com/flash/test-4.html. There is a Flash sniffer that displays a JPG when Flash is not installed that is also working fine in the static environment.

    Within the Enfold theme it shows the JPG image when it runs the same code (but not the desired Flash animation): http://blueunderground.com/test-4/.

    I have added a couple of lines of JavaScript to header.php through the editor. These are included in the static sample mentioned above that works correctly. On header.php it is between “<title><?php if(function_exists(‘avia_set_title_tag’)) { echo avia_set_title_tag(); } ?></title>” AND “<!– page title, displayed in your browser bar –>”. The script reads:

    <meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1″ />
    <script type=”text/javascript” src=”http://blueunderground.com/flash/swfobject.js”></script&gt;
    <script type=”text/javascript”>
    swfobject.registerObject(“myFlashContent”, “9.0.0”);
    </script>

    Please advise on how this can function correctly with the Enfold theme. Thank you for your help with this!

    #195725

    Hi!

    Please excuse the late reply. If you just want to display the portfolio category in the breadcrumb insert following code at the bottom of functions.php

    
    add_action('after_setup_theme','avia_remove_portfolio_breadcrumb');
    function avia_remove_portfolio_breadcrumb(){
    remove_filter('avia_breadcrumbs_trail','avia_modify_breadcrumb');
    }
    

    This post: https://kriesi.at/support/topic/problem-with-breadcrumbs-in-firefox/#post-185097 explains why the breadcrumb may vary.

    Best regards,
    Peter

    #195682

    Hey ShortieD!

    Please add this on functions.php:

    add_filter( 'avf_google_heading_font',  'avia_add_heading_font');
    function avia_add_heading_font($fonts)
    {
    $fonts['PT Sans'] = 'PT Sans:400,700,400italic,700italic';
    return $fonts;
    }
    
    add_filter( 'avf_google_content_font',  'avia_add_content_font');
    function avia_add_content_font($fonts)
    {
    $fonts['PT Sans'] = 'PT Sans:400,700,400italic,700italic';
    return $fonts;
    }

    You’ll be able to select the new font on Enfold > Styling > Heading and Body font.

    Best regards,
    Ismael

    #195621
    ShortieD
    Participant

    Hi Guys – i’m using a child theme of Enfold and I want to call the following stylesheet in my theme

    <link href=’http://fonts.googleapis.com/css?family=PT+Sans|PT+Sans+Narrow:400,700|PT+Sans+Caption’ rel=’stylesheet’ type=’text/css’>

    what is the best way to do this? Is it by the functions.php? If so do I need to add a functions file to my child and make sure it’s empty with only the function calling the google font? Please advise so I don’t break anything and the best practice for your theme.

    Cheers

    #195602

    In reply to: Contact Form 7 issues

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

    Hi!

    See Peter’s response here: https://kriesi.at/support/topic/make-top-icon-linkable/#post-194724

    Regards,
    Josue

    #195298

    Thanks for that Ismael.

    I have looked at the video and creating a Child Theme looks an interesting for the future. But as Devin says in the video, it should be planned and started before Enfold is installed. As the site is now live, that’s not really an option for me now.

    I have received some good help from the Kriesi team regarding styling changes in the last 3 weeks as I have built my first WordPress Enfold site. All of the changes suggested by the Kriesi team have been written through the Enfold/WP Dashboard/Appearance/Custom CSS and above the editing window I see the title ‘Custom CSS’ – see screenshot attached.

    http://i.imgur.com/Loh22ye.png

    I have traced the file it writes to – it is called custom-css-full.css (and seems to be ‘compressed’ to custom-css-1385755199.min for code efficiency).

    http://i.imgur.com/9Hy7wKr.png

    When I have edited the Custom (or Quick?) CSS in this way, my changes could be instantly seen and the Enfold main theme CSS file was not altered.

    Since I made the site live (by moving the index.php file out of the development subdirectory to the root, and pointing the home page URL to the subdirectory containing the WP Enfold site) I have lost the Custom/Quick CSS changes, I guess because my Enfold theme can’t find them.

    Can you tell me how I can get Enfold to see the Custom/Quick CSS edits in the way it used to be able to see them?

    I’m sure it simply a case of pointing to the right CSS file – I think it’s a line involving: id=’custom-css-css’

    #195227

    Hey tonywilson!

    It’s not a programming error – you just need to read the error message:

    open(/home//sess_3954292ce6a280032643b6104a87446b, O_RDWR) failed: Permission denied

    It tells you that the server tried to write the session data but it failed because it couldn’t open the temporary session folder (/home//sess_3954292ce6a280032643b6104a87446b) to write the session data (failed: Permission denied). Please ask your hoster to fix the folder/session permissions. Without sessions you can’t use the theme properly and if the hoster refuses to help you please switch to another hoster…

    For more information please read http://stackoverflow.com/questions/5104065/php-session-handling-errors and http://www.vikasing.com/2013/02/pita-6-php-warning-unknown.html

    Best regards,
    Peter

    #195086

    I probably could Ismael, but I’d like to keep the custom CSS separate from Enfold’s them CSS, for two reasons.

    Firstly I will be handing the site over to my client for updating and any future theme upgrade would probably overwrite the custom.css. Secondly, I would also like to be able to easily tweak the CSS with the WP dashboard in the way I have been able to do so far.

    I’ve discovered that editing the Custom CSS within the WP Enfold appearance dashboard changes the files custom-css-full.css and custom-css-1385755199.min, and not the file custom.css.

    To make the site live, I’ve moved the index.php file out of the development subdirectory to the root, and pointing to the subdirectory containing the WP site – I think telling WP where the edited custom-css files are would cure the problem.

    I just can’t see where I should make this change to point WP to custom-css-1385755199.min – hope you can tell me how.

    #195037

    Hey Tomaž!

    Edit framework > php > class-framework-widgets.php, find the code “sensor=false”. You can find them on line 1140 and line 1197. Add the language url. If you want to use the Russian language, you can change them to “sensor=false&language=ru-RU”. Please refer to this link: http://www.wpgmaps.com/documentation/changing-the-google-maps-language/

    Best regards,
    Ismael

    #195010

    In reply to: Layer Slider Errors

    Hey!

    I actually did click on your username but frankly could not recognize the theme :)
    1) Can you please open Footer.php file in Appearance > Editor and check if 168th line is the same or not? It should be at the very bottom of the file http://i.imgur.com/M3XOqYo.jpg
    2) Layerslider.css file and JavaScript files are failing to load http://i.imgur.com/gOFxyQV.jpg I would suggest you to re-update the theme via FTP
    For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750

    Regards,
    Yigit

    I am also running version 3.7.1 of the wordpress installation and the 4.6.5 version of the layer slider, just checked the layer slider.php file and it states that I have the latest version.

    Could the issue have something to do with in update.txt file

    //The replace stuff below I hav not done, do you belive I need to do this?
    “replace sample slider folder
    remove all skins but fullwidth and preview from the new layerslider folder

    //below is done – checked the file
    update layerslider.php file

    $GLOBALS[‘lsPluginPath’] = get_template_directory_uri() . ‘/config-layerslider/LayerSlider/’;
    $GLOBALS[‘lsAutoUpdateBox’] = false;”

    #194712
    This reply has been marked as private.
    #194710
    This reply has been marked as private.
    #194651

    Hey sgrobert!

    You can edit framework > php > class-breadcrumbs.php, find this codes on line 26:

    echo '<p class="breadcrumb"><span class="breadcrumb_info">'.__('You are here:','avia_framework').'</span> <a href="'.get_bloginfo('url').'">';

    and 186:

    'before' => '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>',

    You can modify the breadcrumb text using this on Quick CSS:

    .title_container .breadcrumb {
    z-index: 10;
    line-height: 15px;
    font-size: 13px;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -7px;
    }
    
    .alternate_color .breadcrumb {
    color : red;
    }

    Cheers!
    Ismael

    petzeus
    Participant

    Hi guys, lovely theme, but I’m having a problem with creating new pages, where I did not before.

    I am using Enfold v.2.4.2, WP 3.7.1, and when I create new pages, the vertical padding or spacing between all page elements is increased significantly beyond the default. Existing pages (that were created under v.2.3 or earlier) do not show the same behaviour, but copying the exact same code to a new page exhibits the expanding vertical padding issue.

    I have checked the code using Advanced (Avia) Layout Builder, as well as the Default Editor. All seems to be correct, no extra <p> or </br> being added. However, I did notice that creating a new/blank page and switching between Advanced and Default editors inserts a </br> code for no apparent reason. I have turned on the “debug” mode in config.php to discover this strangeness.

    Any clue what is going on? This is driving me nuts.

    Thanks,
    Paul

    #194522

    Hi joax!

    There is some issue in the rendering of the search icon:

    Open functions-enfold.php and make sure line 52-73 look like this:

    if(!function_exists('avia_append_search_nav'))
    {
    	//first append search item to main menu
    	add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 );
    	add_filter( 'avf_fallback_menu_items', 'avia_append_search_nav', 10, 2 );
    
    	function avia_append_search_nav ( $items, $args )
    	{	
    		if(avia_get_option('header_searchicon','header_searchicon') != "header_searchicon") return $items;
    	
    	    if ((is_object($args) && $args->theme_location == 'avia') || (is_string($args) && $args = "fallback_menu"))
    	    {
    	        global $avia_config;
    	        ob_start();
    	        get_search_form();
    	        $form =  htmlspecialchars(ob_get_clean()) ;
    
    	        $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"><a href="?s=" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'></a></li>';
    	    }
    	    return $items;
    	}
    }

    Regards,
    Josue

    #194351

    Hi rednovaMeUp!

    In WordPress dashboard, please go to Appearance > Editor and open Header.php file 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(1167)) { echo 'background: none;'; } ?>">

    I assume that you are using boxed layout with background image

    Regards,
    Yigit

    #194343

    Hi!

    Please try to increase the allocated memory to 128M by editing wp-config.php: http://codex.wordpress.org/Editing_wp-config.php#Increasing_memory_allocated_to_PHP
    Also, please try updating theme to the latest version 2.4.2 via FTP and update WordPress as well.
    For a quick guide on updating your theme take a look at this video on updating the Enfold theme via FTP: https://vimeo.com/channels/aviathemes/67209750

    Cheers!
    Yigit

    #194340
    tonywilson
    Participant

    I’ve installed the latest version of wordpress and the enfold theme but I am getting a series of error messages at the top of the browser window when i view the site:

    ———————————————————————————
    Warning: session_start() [function.session-start]: open(/home//sess_3954292ce6a280032643b6104a87446b, O_RDWR) failed: Permission denied (13) in /web2/user37672/website/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33

    Warning: session_start() [function.session-start]: Cannot send session cookie – headers already sent by (output started at /web2/user37672/website/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /web2/user37672/website/wordpress/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 /web2/user37672/website/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /web2/user37672/website/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33
    ———————————————————————————

    Followed by the expected site content, which is just the default content until I get this situation resolved, after the content I get more error messages. I searched through the forum and see that this has come up a few times but I cannot see a definitive answer as to what causes it other than it’s a hosting problem and to contact your host. I contacted my host who have come back and told me “it’s a programming problem alter your code”. Can you provide me any more detail as to the exact cause of the problem or what needs to be done in order to put this right.

    Currently the site can be viewed here: http://tonywilson.eu/wordpress/

    Thank You

    • This topic was modified 12 years, 4 months ago by tonywilson.
    #194269

    In reply to: Main menu text color

    Hi!

    Please try to contact your host and ask them to increase the max_input_vars on php.ini. If you have access to the .htaccess file, please add this:

    php_value suhosin.post.max_vars 7000
    php_value suhosin.request.max_vars 7000

    Cheers!
    Ismael

    #194154

    Thanks for the response. As a follow-up I have 2 questions.

    1. There are about 7 different config.php files in the editor and I am having a hard time finding where the Memory Limit section is.

    2. The issue isn’t so much with loading but just not displaying. It shows the the file is on there but for some reason the picture is not displaying in the thumbnail view or if I load to a page. From my experience with WP in the past, f a memory limit error happens it is during the upload phase and it doesn’t let you complete the upload. This has let me complete the upload but it is not displaying.

    Any further thoughts would be appreciated as I look forward to using this particular theme.

    Thanks

    Brian

    • This reply was modified 12 years, 4 months ago by bondrako.
    #194143

    Hi PPCHound!

    Open /framework/php/class-framework-widgets.php replace line 796 with this:

    echo '<div class="tab first_tab widget_tab_popular"><span>'.__('Popular', 'avia_framework').'</span></div>';
    

    And line 801 with this:

    echo '<div class="tab widget_tab_recent active_tab"><span>'.__('Recent', 'avia_framework').'</span></div>';
    

    Best regards,
    Josue

    #194091

    Hey!

    Header
    1) Can you post a screenshot and show how you would like logo to be? And currently, i see no seperator between logo and menu
    2) Please add following code to Quick CSS to make active menu item orange

    .header_color .main_menu ul:first-child > li.current-menu-item > a, .header_color .main_menu ul:first-child > li.current_page_item > a { color: orange; }

    3)

    .current-menu-item>a>.avia-menu-fx { display: none; }

    4) In WordPress dashboard, please go to Appearance > Editor and open Header.php file and find

    do_action('ava_after_main_menu');

    And add your image after closing div tag as shown here http://i.imgur.com/DNN2fgT.jpg
    Font
    1) Which font exactly do you mean? You can go to Enfold theme options > Styling and change the font if you would like.
    2) You can use heading tags. Please see http://www.w3schools.com/tags/tryit.asp?filename=tryhtml_headers
    3) You can highlight texts as shown here http://i.imgur.com/csSI7L4.jpg
    Links
    1)

    .image-overlay { display: none!important; }

    Best regards,
    Yigit

    #193947
    This reply has been marked as private.
Viewing 30 results - 16,321 through 16,350 (of 16,888 total)