Viewing 30 results - 241,711 through 241,740 (of 243,740 total)
  • Author
    Search Results
  • #25591

    Topic: Portfolio Question

    in forum Enfold
    dsgnerfw
    Participant

    I want to edit my portfolio page to show something like in >

    It has different categories >

    All/CSS/HTML/Photography/PSD/VIDEO

    And for my site I want something like

    ALL / Logo / Web / Interface

    So how do I do this ? create a page > portfolio

    Then create a portfolio item each for logo , web , interface? And a category for each item as well ?

    #114696

    Hey Kriesi,

    ENFOLD is a nice a flexable theme!

    What I am missing is a COLLAPSIBLE MENU in MOBILE MODE – so that in initial mode only the 1st level is visible and not all menu items.

    Example:

    – 1st Level

    – 1st Level

    – – – 2nd Level (not visible)

    – – – 2nd Level (not visible)

    – 1st Level

    – 1st Level

    Please add this to one of the next updates.

    Thanks, Tom

    Thanks for your help with this Dude. When I do the replacement I get this error:

    Catchable fatal error: Object of class stdClass could not be converted to string in /home/birdsnest/public_html/blog/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider.php on line 253

    Do you have any ideas about what I may need to change?

    #25587
    josemanuel
    Participant

    Actually the theme always use the tag rel=”author” , and i would like to control or disable this , Where can i find it?

    <link rel=”author” href=”https://plus.google.com/u/0/number”/&gt;

    #25582
    500Webmaster
    Participant

    Hi,

    I’ve noticed that in Enfold, if you align bulleted text to the center or right-hand side, the actual bullets remain aligned to the left of the page. It looks quite weird, even though this may be technically right to some people. Is there a way to get the bullet points to follow the alignment of the text?

    Thanks,

    Lea

    #127220

    Hi,

    A non-fixed header is the type of header that this page has, so when you scroll, the header disappears. The fixed header shrinks but stays on top of the page when you scroll down.

    Your question is about a non-fixed header (like the header on this page you are reading now) though I think you are asking about the fixed header.

    The fixed header shrinks by 50% including the logo by use of jQuery. I don’t think opacity is used. Logo size on the demo site ( kriesi.at/themes/enfold is 231w/116h and it shrinks down to 116w/58h automatically via jQuery. The code is located in /js/avia.js in the function that starts on line 809 called avia_header_size()

    Thanks,

    Nick

    Hi 500Webmaste,

    How’s this? http://www.clipular.com/c?9129028=TFXj4p_3RJD6Twkf3OQSL_zP0L8&f=.png

    Please add this to you /css/custom.css file OR to Quick CSS located in Enfold > Styling Layout.. the text area at the bottom of that page.

    .avia-table-2 .pricing-table>li:last-child {
    height: 150px;
    }
    .avia-table-2 .pricing-table-wrap ul li, .avia-table-3 .pricing-table-wrap ul li {
    height: 55px;
    }


    What you can do if you want a different look for your tables, is

    Install free plugin called Enhanced Text Widget ( http://wordpress.org/plugins/enhanced-text-widget/ ),

    Then go to Appearance > Widgets and create two custom sidebars – call one: left-side, and the other: right-side

    create a new page with no sidebars

    Add two 1/2 column elements.

    Inside each of the two column elements add a widget area element.

    Set the widget area elements to the sidebars you created earlier (left and right)

    Go back to Appearance > Widgets and add one Enhanced text widget , to each of the two custom sidebars (left and right). Check option to not display title of widget.

    Now you can just use an html table generator like this one http://www.textfixer.com/html/html-table-generator.php to style and create each of your tables and then just paste whatever code from the generator right into the Enhanced text widgets.

    Thanks,

    Nick

    #127363

    In reply to: Socket Size & color

    Unfortunately there’s (currently) no real fix for this issue. The content container height depends on the content and if there isn’t enough content the container height won’t cover the viewport height – in this case the content container ends before the bottom of the screen and the body background is visible at the bottom. I’d suggest to use the same color for the socket and the body/html background – then the user won’t notice that the body/html background is different and the user will just notice that the socket height varies from page to page.

    I found some jquery scripts – eg http://josephfitzsimmons.com/home/simple-sticky-footer-using-jquery/ or http://www.egstudio.biz/sticky-footer-with-jquery/ which will add a margin to the footer div if the content container height doesn’t exceed the viewport but I feel it’s very buggy and doesn’t always work as expected. In addition it will maybe break the responsive layout (didn’t test this though)

    However if you want to try it add following code to the bottom of enfold/js/avia.js:

    jQuery(document).ready(function() {
    var footer = jQuery("#footer");
    var pos = footer.position();
    var height = jQuery(window).height();
    height = height - pos.top;
    height = height - footer.height();
    if (height > 0) {
    footer.css({'margin-top' : height+'px'});
    }
    });

    #126782

    Hi,

    Ahh.. So you had a working site with Thesis, then you changed over to Enfold, and now the new posts show the featured image while the old ones from Thesis do not? Thesis uses a non standard way of attaching images which prevents the featured image from being recognized by wordpress without Thesis , (a rather clever way of ensuring that past customers remain current customers). You can read about it here ( http://wordpress.org/support/topic/migrating-thesis-post-images-and-thumbnails-to-non-thesis-theme ) since you aren’t the first to try to solve this issue.

    However you are in luck if you only have 10 featured images that aren’t showing up. You will need to re-attach them yourself again in Enfold which should take 10-15 minutes total. Just get the original images and re-attach them one at a time. Now if you had 1000 images , that’s when things get ugly.

    Thanks,

    Nick

    #127391

    In reply to: Install Enfold

    Hi Devin,

    and thank you for the reply.

    I have tried both the WP install and the FTP upload but nothing works.

    From WP I get the message “Are you sure you want to do this” and then I can only go back to the previous page.

    I am sorry I posted it twice, thought I should post it in the right place.

    So what else can I do now?

    #127417

    Hey!

    If you want to activate this option for all products open up wp-contentthemesenfoldconfig-woocommerceconfig.php and replace

    $active_hover = get_post_meta( $id, '_product_hover', true );

    with

    $active_hover = true;

    Best regards,

    Peter

    #127182

    You can use the more quicktag to manually set the excerpt. If you don’t want to use the more quicktag open up wp-contentthemesenfoldincludesloop-index.php and replace:

    $blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "content";

    with

    $blog_content = !empty($avia_config['blog_content']) ? $avia_config['blog_content'] : "excerpt_read_more";
    if(is_single()) $blog_content = "content";

    WordPress will use the get_the_excerpt() function afterwards which truncates the content automatically…

    Glad Dude could help :)

    Let us know if you have any other questions or issues.

    Regards,

    Devin

    #127296

    Hi Jasmer,

    The only one you’ll need to follow is Nicks: https://kriesi.at/support/topic/youtube-icon#post-117381 completely since you aren’t doing the youtube icon.

    If you want to go with Ismaels, you follow this one: https://kriesi.at/support/topic/youtube-icon#post-117289 but you’ll need your own apple image for the icon. Where it says ” ../images/youtube.png ” in his css, you just put the absolute url for where you upload your image (both normal and hover).

    Regards,

    Devin

    #127390

    In reply to: Install Enfold

    Hi koelnermusikakademie,

    I just responded to your other post on another topic with the same question but will ask the same things here. What specifically are you having issues with? Are you getting an error message or something else?

    Have you tried installing via FTP: https://vimeo.com/channels/aviathemes/64927356 ?

    Regards,

    Devin

    #126832

    In reply to: Enfold won't install

    Hi Asterios,

    What specifically is your issue with installing the theme files? Have you tried installing via FTP, increasing your wordpress memory limit and disabling all active plugins?

    Regards,

    Devin

    #126831

    In reply to: Enfold won't install

    I also have the same problem and until now, nothing has worked for me!

    Could I have some help please?

    Regards

    Asterios

    #25564
    akim9044
    Participant

    Hello, first of all I want to say I love your theme and would like to thank you for such a great theme.

    I just have some little issues and questions.

    When I post something, such as this: http://jharden13.com/highlights/official-high-school-mix/

    The featured image is only showing half, and I can’t delete it because I need it as preview image.

    Is there any way I can delete the featured image from all single posts? Or better yet, is there a way I can delete the featured image just from certain categories?

    Also, in embedded YouTube videos, such as http://jharden13.com/about-james-harden/biography/

    When you scroll down, you can notice that the YouTube videos are overlapping the top menu. Is there a way to fix that also?

    Lastly I want to display “You may also like” portion in the blog, like here: http://kriesi.at/themes/enfold/2012/12/12/lorem-ipsum-dolor-sit-amet-consectetuer-adipiscing-elit-aenean-commodo-ligula-eget-dolor-aenean-massa/

    How would I go about doing that?

    Again thank you so much guys and I’ll look forward to your answers.

    #25563
    Asterios
    Participant

    Hello, I just purchased Enfold and after reading and trying everything I found in this Forum about the installation, it still won´t install.

    I really need some support with that. Thank you.

    #114695

    Love the Theme but here are some of my wishlist items for it:

    1) Add the Avia Feedback Box on Choices to Enfold

    2) Fix issue with Pricing Table noted here: https://kriesi.at/support/topic/description-column-in-tables-not-aligning-properly-with-adjoining-columns

    3) Add a FAQ custom post type and integrate it with the accordion and testimonial content. So we can just select the FAQ category and maintain from there (not have to edit page each time). Like the Q&A plugin but better styling with the Theme.

    4) Add color style to the accordion + (I’m sure I can do it with custom CSS .. at least I hope so but it would be nice to make it easier). Want to make the + stand out more.

    5) Have the color section work on pages that are not full width.

    6) Ability to add a button in header.

    7) Add a text block type selection that will allow to enter any html or css without adding the <p> around items.

    8) Ability to format the datagrid cell/row settings

    9) More font icons and ability to add more (I did see there is a post about how to do add but wish it came with a longer list)

    Anyway, really nice job (much better than the last Theme I used and gave up on).

    Thanks

    #127153

    Hi Devin,

    thank you for the immediate answer!

    Having the searchbox on mobile devices seems indeed an essential feature.

    Proposal: The Enfold header settings allows customization of links to social media. It would be much more powerful to have *arbitrary* icon/link pairs instead…!

    BTW: Not only the searchbox but the whole sidebar disappears in the mobile view…

    Best regards,

    informium

    thanks for the reply

    #127026

    Hey! Sorry but this is currently not possible and would require some heavy modifications…

    You can either hire someone for the job or post it in our feature request thread. In case there are enough users supporting your request we will add it to the theme:

    https://kriesi.at/support/topic/enfold-feature-requests

    #127295

    Hi Ismael,

    Thank you for the link.

    1. As I understand it you are giving me two choices: YOUR method of editing custom.css and NICK’s more complex method. Correct?

    2. In YOUR method, I use a jpg or png icon and in NICKS’s method I use a glyph. Is this correct?

    3. Fontello does have an Apple icon. See here http://www.fontello.com/#search=apple

    4. On the link you posted it shows many directions. Yours, Nicks – do steps 1-12 then, only do steps 5,9,11, etc. It seems to me the directions evolved over time and were edited. I am confused.

    5. What is the easiest way to replace the “dribbble” glyph with this apple glyph? http://www.fontello.com/#search=apple

    Thank you for your time, Jasmer

    Are you using WPML for the translation? If yes you should be able to create different menus for each language. Just select a language on the admin page (the language selector can be found on the top of the admin page), then create a menu for this language and assign it to a “theme location”, then switch to another language and create another menu for this language, etc.

    Without a plugin like WPML it’s not easily possible to change the menu content because some advanced coding/logic is required to display different menus for different languages…

    #127236

    In reply to: You Might Also Like

    Hey!

    Copy wp-contentthemesenfoldsingle.php to the child theme folder and remove following line:

    get_template_part( 'includes/related-posts');

    The child theme single.php template will overwrite the parent theme file.

    Regards,

    Peter

    #126800

    Please try following – open up wp-contentthemesenfoldconfig-templatebuilderavia-shortcodestextblock.php and replace

    return "<div class='avia_textblock'>".wpautop( ShortcodeHelper::avia_remove_autop($content) )."</div>";

    with

    return "<div class='avia_textblock'>".ShortcodeHelper::avia_remove_autop($content)."</div>";

    This modification will remove the wpautop() function/filter which adds p tags to the content.

    #25547
    Jason
    Participant

    I am after a little help setting up my first site with WordPress, WooCommerce and Enfold – EDITED

    1. How do I control the number of words shown in the excerpt of blog posts in the News blog post block?

    2. How do I get rid of the floating arrow on the left hand side of the page which links to a product in my store? It seems to have something to do with the woocommerce footer widget, but there are no settings to disable this arrow.

    3. Why is my twitter footer widget broken – I have set the username to tiperformance and URL to http://twitter.com/tiperformance ?

    4. Why is there so much padding between the twitter widget and the header?

    Thanks in advance for your help.

    Cheers,

    Jason

    #127294

    Hi,

    Adding an icon is bit complicated right now. Kriesi will make it easier to add social media icons on the next updates.

    I posted a basic instruction on this link but please look for Nick’s comprehensive instruction on how to add or modify social icons. Unfortunately, Entypo Fontello( the font use for rendering icons ) doesn’t have the Apple icon. You might end up following my suggestion.

    https://kriesi.at/support/topic/youtube-icon

    Regards,

    Ismael

    #127237

    Hello,

    Please download Enfold 1.7 then override your old theme files via FTP or cpanel. :)

    Regards,

    Ismael

Viewing 30 results - 241,711 through 241,740 (of 243,740 total)