Viewing 30 results - 230,671 through 230,700 (of 244,614 total)
  • Author
    Search Results
  • #213768

    Hey lathomas42!

    No, unfortunately the post type is hardcoded into the framework and you can’t replace it. If you want to change the label on the admin page and on the search result list you can modify the label text strings in wp-content/themes/enfold/includes/admin/register-portfolio.php though – search for

    
    	$labels = array(
    		'name' => _x('Portfolio Items', 'post type general name','avia_framework'),
    		'singular_name' => _x('Portfolio Entry', 'post type singular name','avia_framework'),
    		'add_new' => _x('Add New', 'portfolio','avia_framework'),
    		'add_new_item' => __('Add New Portfolio Entry','avia_framework'),
    		'edit_item' => __('Edit Portfolio Entry','avia_framework'),
    		'new_item' => __('New Portfolio Entry','avia_framework'),
    		'view_item' => __('View Portfolio Entry','avia_framework'),
    		'search_items' => __('Search Portfolio Entries','avia_framework'),
    		'not_found' =>  __('No Portfolio Entries found','avia_framework'),
    		'not_found_in_trash' => __('No Portfolio Entries found in Trash','avia_framework'),
    		'parent_item_colon' => ''
    	);
    

    and replace Portfolio Items, Portfolio Entry, etc. with your custom text.

    Cheers!
    Peter

    #213760

    In reply to: Category display

    Parse error: syntax error, unexpected ‘slide’ (T_STRING) in /home/studiotopo/public_html/wordpress/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider.php on line 388

    #213755

    In reply to: Category display

    Hi!

    Open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider.php and replace

    
    $output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
    

    with

    
    $output .= "<time class='slide-meta-time updated' $markup>" .get_the_time(get_option('date_format'), $the_id)."</time>";
    
                        $taxonomies  = get_object_taxonomies(get_post_type($the_id));
                        $cats = '';
                        $excluded_taxonomies =  apply_filters('avf_exclude_taxonomies', array('post_tag','post_format'), get_post_type($the_id), $the_id);
    
                        if(!empty($taxonomies))
                        {
                            foreach($taxonomies as $taxonomy)
                            {
                                if(!in_array($taxonomy, $excluded_taxonomies))
                                {
                                    $cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' ';
                                }
                            }
                        }
    
                        if(!empty($cats))
                        {
                            $output .= '<div class="slide-meta-cats">'.__('in','avia_framework')." ";
                            $output .= $cats;
                            $output .= '</div><div class="slide-meta-del">/</div>';
                        }
    
                    $tags = get_the_tags();
                    $tag_links = '';
                    foreach ($tags as $tag)
                    {
                        $tag_links = '<a href="'.get_tag_link($tag->term_id).'">'.$tag->name.'</a>, ';
                    }
    
                        if(!empty($tag_links))
                        {
                            $output .= '<div class="slide-meta-tags">';
                            $output .= $tag_links;
                            $output .= '</div><div class="slide-meta-del">/</div>';
                        }
    
    

    Best regards,
    Peter

    #213749

    Hi Ismael,

    Thank you for the reply. So, it means that all table column widths will be randomly generated by the theme?
    Isn’t there any other way to set the width for ALL tables using some CSS code?
    This is how one page shows 2 tables with 2 columns each: http://d.pr/i/GkHi/QCPTncXn
    As much I like the easy-to-use table element from Enfold theme, it doesn’t look good at all.

    Any tips are appreciated.

    Thank you

    #213748

    Hey!

    Please try following fix – open up wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_gallery.php and replace

    
    if($meta['index'] == 0) $params['close'] = false;
    

    with

    
    if(!isset($meta['index'])) $meta['index'] = 0;
    if($meta['index'] == 0) $params['close'] = false;
    

    Cheers!
    Peter

    #213733
    Imburr
    Participant

    I am seeing Google crawls of interior theme pages in GWT- should I block these with robots? I don’t necessarily understand why Google is even seeing them…

    
    	Priority	URL	Response Code	Detected
    
    1
    wp-content/themes/enfold/
    500
    1/20/14
    
    2
    wp-content/themes/enfold/config-layerslider/LayerSlider/add.php
    500
    1/19/14
    
    3
    wp-content/themes/enfold/framework/avia_framework.php
    500
    1/20/14
    
    4
    wp-content/themes/enfold/framework/php/auto-updates/auto-updates.php
    500
    1/20/14
    
    5
    wp-content/themes/enfold/framework/php/class-tgm-plugin-activation.php
    500
    1/20/14
    
    6
    wp-content/themes/enfold/framework/php/inc-autoconfig.php
    500
    1/20/14
    
    7
    wp-content/themes/enfold/framework/php/inc-avia-importer.php
    500
    1/20/14
    
    8
    wp-content/themes/enfold/framework/php/wordpress-importer/avia-import-class.php
    500
    1/20/14
    
    
    #213725

    In reply to: Email "Contact" Form

    Hola Josue! Thanks for the tip, but no, I built the whole look of my site using Enfold’s native Contact form builder. And my guess is that it is more a matter of the way that the theme/ site is contacting (or actually, NOT contacting) my STMP. I will look into the plug in that you suggest, but then again that would mean changing my whole design for the page, and that just wouldn’t work, am afraid.

    #213718

    Hey kylehogan!

    Switch to Advance Layout Builder then insert the Color Section. Add a background image then select “Fixed” for background position. Watch these videos to learn more about the theme: https://vimeo.com/channels/aviathemes/

    Best regards,
    Ismael

    #213701

    I would like to do something like this as well, similar to how the EventCamp theme does it. With that theme you’re able to link to sections on the home page from the menu. Very handy. I’d prefer to use Enfold, though :)

    Any thoughts on how I could do that myself, or an ETA on when it might be included in the theme?

    Thanks!

    Sam

    • This reply was modified 12 years, 3 months ago by samrae.
    #213695

    Hi!

    The file enfold_child.css can be overwritten or override. You can modify the css styling of the theme directly on the style.css of the child theme or you can use the Quick CSS.

    Best regards,
    Ismael

    Citrusjohn
    Participant

    Hey people!

    I upgraded my hosting plan to deluxe, and after the upgrade was complete I started getting a bunch of errors and the admin pages are just throwing PHP errors as well. I’m stumped on how to fix this. I installed a fresh copy of WP in another directory and it worked fine, until I installed enfold, then I started getting the same exact errors I’m getting on my main website.

    You can check out the errors at http://www.johnsportfolio.net/CBW

    Thank you everyone in advance!

    #213677
    kylehogan
    Participant

    http://kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/
    In the Advanced Layout Editor how do you make the fullscreen fixed stationary background image as seen in the screenshot? I can’t seem to figure it out.
    Fixed background

    #213670
    This reply has been marked as private.
    #213659
    This reply has been marked as private.
    #213652

    Hi!

    Your site displays with no issue on Chrome 32.0.1700.77 (Mac OS X).

    Regards,
    Josue

    #213650

    In reply to: lightbox link to word

    Hey!

    PrettyPhoto comes with Enfold, try with something like this:

    <a href="images/fullscreen/2.jpg" rel="prettyPhoto">word</a>
    

    Best regards,
    Josue

    #213647
    artemrepin
    Participant

    Hi Kriesi and anyone who can contribute! Please take a look at this link: http://test.artemrepin.com/
    I am modifying the LayerSlider and when testing in Google Chrome Version 32.0.1700.76 m (latest version) it is causing havoc on the page. It is not behaving this way in IE 11 and Firefox 26.0.
    Can you check it out and let me know why?
    Thank you!

    #213632

    Hey FiestaInsurance!

    Go to Enfold > Header > Responsive Header Main Menu > choose the “Slide out Menu”.

    Cheers!
    Ismael

    #213613

    Topic: Email "Contact" Form

    in forum Enfold
    Ed
    Participant

    Cheers!

    I am almost finished working on Mambocasting’s Site, but I still can’t get the contact form to send an email!
    I apologize for not being able to solve this issue, in spite of all the helpful information supplied

    https://kriesi.at/support/topic/contact-form-does-not-work/

    and

    https://kriesi.at/support/topic/-1-7-contact-forms-not-sending-email/

    I have installed Configure SMTP and WP SMPT neither of which works EITHER with my own provider’s SMPT email or with a gmail account that I set up exclusively for this. Now, the Enfold Them version is 2.4.4. the child 1.0 (that is normal, I guess). Also, the site was originally developed on my local machine using MAMP- if that matters.

    Suggestions/ help would be very much appreciated.

    Thanks!

    #213610
    redpupmedia
    Participant

    Hello.
    Using an Ajax Portfolio Preview, Display Preview Images as Gallery.
    We want to prevent the thumbnails and big_thumb from being links. We disabled the lighbox per http://kriesi.at/documentation/enfold/prevent-image-or-link-from-opening-in-a-lightbox/ , but the thumbnails open the image file in a new window. We want to disable the link on the thumbnails and retain the mouse-over-to-fake-lightbox functionality. The thumbnails and big_thumb should not open or link anywhere, but simply display in the fake lightbox area.
    Seems like it should be in /config-templatebuilder/avia-shortcodes/gallery.php around line 218… but I can’t remove the link without disabling the mouse-over.

    #213606

    Hi!

    If you mean search icon on the main menu, you can go to Enfold theme options > Header and uncheck “Append search icon to main menu”
    If that is not what you meant, can you post a screenshot and show what exactly you would like to remove?

    Regards,
    Yigit

    #213604
    erikkIsrael
    Participant

    Hi,

    I’m creating a few buttons and within them I’d like to change the font of just part of the text. However, when I do so using basic HTML in the label field, the changed text does not align in the center.

    Example:

    Present Your Product At <NOBR><font face=”Felix Titling”>Fast & Cool™</font></NOBR>
    (Enfold automatically changes <br> to the above <NOBR>)

    The Fast & Cool™ part of the label is just slightly off center now.

    #213598

    Hey David!

    Please go to wp-content\themes\enfold\includes folder and open loop-index.php file and find

    $markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false));
                    echo "<time class='date-container minor-meta updated' $markup>".get_the_time(get_option('date_format'))."</time>";
                    echo "<span class='text-sep text-sep-date'>/</span>";

    and comment it out using // as following

    //$markup = avia_markup_helper(array('context' => 'entry_time','echo'=>false));
                    //echo "<time class='date-container minor-meta updated' $markup>".get_the_time(get_option('date_format'))."</time>";
                    //echo "<span class='text-sep text-sep-date'>/</span>";

    Cheers!
    Yigit

    #213591
    This reply has been marked as private.
    #213590

    Hi mstell168!

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

    .header_color .sub_menu>ul>li>a, .header_color .social_bookmarks a { color: white; }

    It will change the font color of social icons and secondary menu items to white

    Best regards,
    Yigit

    #213587

    Hey Ricardo!

    Can you post the link to your website? The one on your profile is not using Enfold

    Best regards,
    Yigit

    #213582

    Thank you Devin for your quick reply.

    So you mean the style.css in /wp-content/themes/enfold-child? But this file does not contain any code to change. So I have to first add code that has (in this file) priority before the code in the other .php files of the parent theme, right?

    But then Firebug does not help, because it referres to the enfold_child.css in /uploads/dynamic_avia.

    Neo.

    Hi!

    Please see http://kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/ as well. That should be helpful

    Cheers!
    Yigit

    #213575
    brentwestwind
    Participant

    I have followed the article on linking to an anchor here. http://kriesi.at/documentation/enfold/add-anchors-to-your-page-for-single-page-navigation/

    I have followed the steps and it is working, but the transparent menu is covering the top part of the box and covering the heading and other content

    You can see it here: http://staging.westwindchurch.org/about/new-here/#getting-connected

    This is not the case in your example: http://kriesi.at/themes/enfold/homepage/home-v7-one-page-portfolio/#portfolio

    How do I remedy this?

    Thanks in advance!

    #213568

    Hey hughsieg5!

    Can you post the link to your website? Please also try deactivating all active plugins and check if that helps

    Cheers!
    Yigit

Viewing 30 results - 230,671 through 230,700 (of 244,614 total)