Viewing 30 results - 214,381 through 214,410 (of 244,474 total)
  • Author
    Search Results
  • #312501

    Topic: Display problem

    in forum Enfold
    hall1986
    Participant

    Hi I seem to be having some problems with my website, it displays the following at the top:

    Warning: session_start(): The session id is too long or contains illegal characters, valid characters are a-z, A-Z, 0-9 and ‘-,’ in /home/napbcouk/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33

    Warning: session_start(): Cannot send session cookie – headers already sent by (output started at /home/napbcouk/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/napbcouk/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33

    Warning: session_start(): Cannot send session cache limiter – headers already sent (output started at /home/napbcouk/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php:33) in /home/napbcouk/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries.php on line 33

    The website i have is http://www.na-pb.co.uk. As you can tell I’m certainly no webmaster however not sure if this is a problem with wordpress or the theme or if its a hosting problem.

    #312491
    jpmoyer
    Participant

    We are trying to implement WooCommerce into an existing WordPress site we have built on the Enfold theme. So far so good, however the ‘View Cart’ and ‘Checkout’ links on the WooCommerce drop down that comes in from the right hand edge are displaying incorrectly.

    Instead of linking to the cart and/or checkout pages they are linking to current URL.

    For example, if a user adds a new item to the cart the url is: ../?add-to-cart=3283
    The links for ‘view cart’ and ‘checkout’ now both go to: ../?add-to-cart=3283

    If the user goes to the about page at the following url: ../about/
    The links for ‘view cart’ and ‘checkout’ now both go to: ../about/

    We have not been able to locate a specific block of code within the theme files that is specifying how these links are generated.
    We’d like to set these links to be static links to the ../cart/ and ../checkout/ pages, respectively.

    Any suggestions on where we can accomplish this at?

    Thanks!
    J

    #312468

    Hi!

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

    .main_menu ul:first-child > li a .avia-menu-text {
    top: 20px;
    position: relative;
    }

    Regards,
    Yigit

    #312459

    In reply to: Enfold Showcase

    Hey everyone. I figured this place would be the best for searching for a developer interested in taking on some enfold PHP mods for us as they come up. We currently have 2 projects which need back-end work. We are a primarily front end team and need a great back-end coder. You should KNOW ENFOLD! Get excited about php and consider yourself primarily a back-end dev. We are not looking for half-ass developers and we expect deadlines to be met on time.

    We have a couple jobs right now that need immediate attention. If you are interested, write to info at zerozendesign dot com.

    Please respond with some Enfold work that you have done that had back-end requirements. The first job will be modifying the ajax portfolio to function like the team portfolio found at http://grovemade.com.

    Thanks!

    (p.s. – support staff, could you guys create a thread for enfold jobs? With such a mix of talent on here, it would be great to be able to call on one another since we all have some knowledge of Enfold)

    #312450

    Hi Michael!

    thank you for choosing Enfold and welcome to our forum!
    Can you please post the link to your website so we can provide you an accurate custom CSS code? :)

    Best regards,
    Yigit

    #312429

    Hi scottybowl!

    Tbh I didn’t test the code with the latest version of Enfold and Events Calendar on my test server but you can try to insert it into the enfold/functions.php or child theme functions.php file:

    
    if(!function_exists('avia_modify_event_breadcrumb'))
    {
        function avia_modify_event_breadcrumb($trail)
        {
            if(get_query_var('post_type') == 'tribe_events')
            {
                $newtrail = array('<a href="#">Events</a>');
                array_unshift($newtrail, $trail[0]);
                if(is_single()) $newtrail['trail_end'] = $trail['trail_end'];
                $trail = $newtrail;
            }
    
            return $trail;
        }
    
        add_filter('avia_breadcrumbs_trail','avia_modify_event_breadcrumb');
    }
    

    Cheers!
    Peter

    #312425

    Hey Marton!

    If you want to modify the text manual open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contact.php and search for following line:

    
    $elements['avia_age'] =	array('type'=>'captcha', 'check'=>'captcha', 'label'=> __('Please prove that you are human by solving the equation','avia_framework' ));
    

    Cheers!
    Peter

    #312424

    Hi glaucofmc!

    It’s probably a server configuration issue. One possible reason could be that the server can’t write to the sessions folder. I recommend to contact the server administrator or host and to ask him to fix the session permissions. If they can’t help you you can try to deactivate all theme sessions with this code (add it to the enfold/functions.php or child theme functions.php file):

    
    add_theme_support('avia_no_session_support');
    

    but I wouldn’t recommend it because it may break the portfolio breadcrumbs which use sessions to store the browser history.

    Best regards,
    Peter

    #312418

    Hey!

    Actually there’s no need to downgrade to Yoast 1.5.5. Try to update to 1.5.6 and if it still doesn’t work insert this code into the enfold/functions.php orchild theme functions.php file:

    
    
    add_action('init','avia_remove_yoast_filter');
    function avia_remove_yoast_filter()
    {
        remove_filter('wpseo_pre_analysis_post_content','avia_wpseo_pre_analysis_post_content_fix', 10, 1);
        remove_filter('wpseo_video_index_content','avia_wpseo_video_content_fix', 10, 2);
    }
    

    Regards,
    Peter

    #312406

    Hey!

    You can also remove the tags by editing wp-content/themes/enfold/includes/helper-social-media.php – open up the file and replace:

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

    with

    
    $replace['title'] 		= !isset($this->post_data['title']) ? wp_strip_all_tags(get_the_title()) : $this->post_data['title'];
    

    We’ll add a filter to helper-social-media.php with the next update – then you can overwrite the “$replace[‘title’]” value with a child theme if necessary.

    Regards,
    Peter

    #312390
    glaucofmc
    Participant

    Quando instaei o tema aparece na pagina inicial esse erro (entre no link :http://fortrio.com.br/2014/ ) o que esta acontecendo?

    #312382

    Hi!

    1) If you just want to display the word “search” in the search field and not the last search term open up wp-content/themes/enfold/searchform.php and replace:

    
    <input type="text" id="s" name="<?php echo $search_params['search_id']; ?>" value="<?php if(!empty($_GET['s'])) echo get_search_query(); ?>" placeholder='<?php echo $search_params['placeholder']; ?>' />
    
    

    with

    
    <input type="text" id="s" name="<?php echo $search_params['search_id']; ?>" value="<?php echo $search_params['placeholder']; ?>" placeholder='<?php echo $search_params['placeholder']; ?>' />
    
    

    You can also place the modified searchform.php into your child folder.

    2) Kriesi uses a filter to redirect the user to a 404 not found error page if the search query is empty. You can remove it by adding this code to the enfold/functions.php or child theme functions.php file:

    
    add_action('after_setup_theme','avia_remove_search_redirect');
    function avia_remove_search_redirect(){
    remove_filter('pre_get_posts', 'avia_search_query_filter');
    }
    

    Best regards,
    Peter

    #312360
    glaucofmc
    Participant

    Hi,

    I am having problems in installation of the theme Enfold he is so http://fortrio.com.br/2014/ can not remove this code of homepage which procedure?

    #312357

    Topic: Enfold menu

    in forum Enfold
    Btina
    Participant

    Hi
    I created a menu. In this menu I have a tab called Kontakt but if I click on it, doesen’t show the page.
    Mabye it’s becaus in de beginning I had installed, on the frontpage, a contact form with a color section like Yigit explaned to me. See ticked #139560. But I don’t want that any more! I just want to have a normal menu bar.

    The other menu tab working normal, it’s just that tab Kontakt and I don’t know why.

    Thank you for you’re help
    Kind Regards,
    Btina

    #312351
    SphereEvenements
    Participant

    Hello,
    I see that it is possible to add text / caption in the images of easy slider like here : http://kriesi.at/themes/enfold/homepage/home-v6-classic-4-column/
    But when I create an easy slider in avia builder, I just can add images and there is no section where I can add text.
    Could you help me please ?
    Regards,
    Franck

    #312343

    WordPress has a number of functions that determine what will be used in a child theme instead of the parent. Anything that is called using the get_template_part function from a theme file for instance will look for the file being requested in the child theme first.

    For the ALB elements (postslider.php) you need to use a function to tell Enfold that the child theme has a folder to check before looking in the parent since WordPress alone doesn’t know about the themes custom stuff.

    For the translation file it looks like you need to add the file in your child theme root directory and then tell WordPress about it via a function: http://codex.wordpress.org/Function_Reference/load_child_theme_textdomain

    #312327

    Hi!

    Please try updating Enfold to the latest version 2.9.2 via FTP and make sure to overwrite all files – http://vimeo.com/67209750

    Best regards,
    Yigit

    #312326

    Hi!

    You can simply order your menu items in Appearance > Menus and please make sure to check “Enfold main menu” under Menu Settings to display your menu correctly :)

    Best regards,
    Yigit

    #312325

    Topic: Pulsing icon

    in forum Enfold
    rodpascoe
    Participant

    Ok, I give up!!

    How do I get the pulsing icons that are displayed under the words “A beautiful experience” on the theme demo at http://kriesi.at/themes/enfold/homepage/transparent-header/ ????

    I’ve been looking for over an hour now! :-(

    Pulsing icons

    #312323

    In reply to: Latest news with date

    Hey!

    Feel free to request such feature and vote requested features here – https://kriesi.at/support/enfold-feature-requests/ :)

    Regards,
    Yigit

    #312320

    Hi,
    I added the demo slider that came with enfold and then replaced it with my images and text. It worked for a couple of months until yesterday when I changed some text. Now it no longer displays full-width.
    EDIT: if you meant how did I add it to the page, I used the shortcode.

    • This reply was modified 11 years, 7 months ago by dubyajay.
    #312308

    In reply to: Colour Menu title

    Hi dyo87!

    1- Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .avia-content-slider .slide-entry-title { color: #004d95; }

    2- Can you please post a screenshot and show the element you would like to edit?

    Regards,
    Yigit

    #312281

    Hi Katrin!

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

    .main-title.entry-title {
    display: none;
    }

    Cheers!
    Yigit

    #312272
    pedrodk
    Participant

    Latest enfold theme, WP 3.9.2

    On the frontpage (at the bottom) we have 3 ICON boxes with text, our problem is the left Icon box.
    When updating the text, the update is only reflected on mobile platforms (iphone, ipad, android etc) – on PC’s the text remains the same (old text) – i have tried to delete the box and recreate it’s did’nt seem to help.

    http://www.korekortkolding.dk

    Edit: The updated text is shown, if i am logged into WP

    • This topic was modified 11 years, 7 months ago by pedrodk.
    #312264

    In reply to: Problem with fontello

    Hi Yigit, thanks for your response.

    I downloaded the latest version of Enfold last week before we started.

    Here is the url –> http://www.callcabinet.us/

    #312249

    Hi vanderburg!

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

    .iconbox_icon {
    display: none;
    }

    Cheers!
    Yigit

    #312243
    Mariusz
    Participant

    Hi,
    I’m using Enfold as a one page style with sections.
    I try to get the link to a specific section with masonry content sorted.

    Something like:

    http://domain.com/#contact/#sales-dept

    Where #contact is an ID of section and #sales-dept is sorted masonry.

    How to do this?

    Thanks
    M

    #312242

    In reply to: Problem with fontello

    Hi Daniel!

    Can you post the link to your website please? Which version of Enfold are you using?

    Regards,
    Yigit

    Hey!

    Please firstly update Enfold to the latest version 2.9.2 – http://kriesi.at/documentation/enfold/updating-your-theme-files/

    Regards,
    Yigit

    #312227

    In reply to: slider full screen

    Hi!

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

    @media only screen and (min-width: 768px) {
    .slideshow_align_caption { padding-top: 50px; }}

    Regards,
    Yigit

    • This reply was modified 11 years, 7 months ago by Yigit.
Viewing 30 results - 214,381 through 214,410 (of 244,474 total)