Forum Replies Created

Viewing 30 posts - 61 through 90 (of 234 total)
  • Author
    Posts
  • in reply to: Enfold Showcase #296175

    Hello @pako69

    Safari, Chrome, Firefox and Opera.. All on a Mac and everywhere the same result.. Try the described workaround, it will work nice for you..

    Cheers

    in reply to: Enfold Showcase #296171

    Hey @pako69..

    It seems that you use a caching-plugin together with simple-captcha for Gravity Forms? This don´t work very well.. I´ve got the same problem on one of my websites together with W3TC.

    Please take a look at your Footer.. No captcha to see, that means no one can use your contact-form to send you a message.. The same happens with your contact-form at contact..

    I found a well working alternative that I described in a simple-captcha support-topic a few days ago..

    It works pretty well. Sometimes it comes a spam-mail, but not more than 2-3 a week.. Take a look at the callback-form in my sidebar… Insert a 7 in the last field, than the button appear. If one of the honeypots get a value, the button stays disappeared.. I use it also for my contact-form.. And it´s cacheable without any problems..

    Take also a look at this.. Works pretty well and it looks great..

    (I know, shame on me… I need a little bit more time to switch my website to enfold .. : ) .. )

    in reply to: Issue with Responsive Design for layout elements #295952

    Hey Yigit,

    that´s it! Thank You!

    Please close this topic..

    Cheers

    in reply to: Best way to insert a Gravity-Form #295895

    Hey Peter,

    das habe ich so auch gemacht. Danke. Ich dachte mir nur, dass es sich um eine interessante Info für euch handelt für das nächste Update..

    Bitte schließe den Topic. Vielen Dank!

    Cheers
    Bruno

    in reply to: Need to modify single.php as an own template #295891

    Hey Josue,

    I take a look at it.. Thank you for your tipp!

    Cheers
    Bruno

    in reply to: Need to modify single.php as an own template #295837

    Hey there!

    What is the best way to insert some php-phrases into page-builder?

    There is a code-box, but I think it don´t work with php?

    Best regards
    Bruno

    in reply to: Enfold Showcase #293893

    Hello @pako69.. Thank you very much for your great share.. Awesome..

    in reply to: Enfold Showcase #293805

    Hey there.. There are some nice artworks in this showroom.. Here is another example I´ve made for a client, inclusive all photos..


    @pako69
    : I like your style.. Nice work.. Please can you share how you insert the fontello-social-bookmarks in your socket? Do you insert your ul into footer.php or do you use another way?

    li -> background:transprent
    li:hover -> background:#””; border-radius:50%; … ?

    Cheers

    in reply to: Enfold extremly slow #293645

    It isn´t a theme-problem. Enfold is a great solution with first class and clean code and great coders..

    But it isn´t an exercise of a theme to give you high-class-performance..

    It´s your turn to minify all scripts and sheets, to find well-coded plugins, to optimize your items like images eg, to use cache-solutions and good hosting-environment with powerful servers, CDN and more..

    A theme is just the face of a body and enfold is one of the best solutions you can find, but you have to do a lot to optimize WordPress (this work you need to do with every other theme, too).

    Use P3 to look which plugs are corrupt and change them with other solutions. Just stay with Plugins you definitely need, erase everything that is just a nice add-on.

    Use W3TC to minify your stylesheets (.css) in the header. Don´t combine them with scripts (.js)..

    Look in your source-code which scripts (.js) are in header-section. Try to minify them in the header-section with the default settings. If your site breaks, you have to erase the scripts from the list one by one. Every time you erased a script, reload in another browser-window your site. On this way you can find scripts that you have to exclude..
    Use the same way with body-scripts. Try to bring them before the closing body tag </body> with asynchron loading. Script-minification is the hardest thing on optimization, but it is definitely worth to spend the time..
    Test every page after you done this work. This is your first step. You have to do it again after every plugin-installation..

    Use extended disc-cache for page-cache and minify-cache. Use also browser-caching. If you´re on a shared hoster, don´t use object-cache and database-cache.

    Take also a look at Plugin Organizer and use iTheme-Security. Install smushit and use tinypng for .png´s. It´s also very important to safe jpeg´s progressive..

    Cheers

    in reply to: Enfold extremly slow #293636

    Hey Kindbowebb,

    I think WPML isn´t your biggest problem.. You definitely need to minify all your scripts and stylesheets.. Your Frontpage needs 131 Requests, most of them are scripts and css-files. It´s important for you to combine them in 2-4 Files. You can use W3TC for it. Please take a look at this: http://tools.pingdom.com/fpt/#!/bFyxiS/http://www.kindbo.com

    There are also 17 Connection-Errors, as you can see under the page-analysis-tab..

    Look at this, too: http://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fwww.kindbo.com&tab=desktop

    Your Server_Response-Time is 2,2 sec.. Normally it´s under 0,2 sec..

    Use W3TC also definitely for Page-Cache and Browser-Cache..

    There are a lot of things that going wrong with your website.. It´s better for you to hire someone with enough knowledge to make some optimizations for you. You need also some Security-Modifications, cause there are no Login-Limits or anything like this..

    Cheers

    in reply to: Need to modify single.php as an own template #292917

    Hello!

    Thanks a lott to you guys..!

    Please let this topic open for a few days. I give you a message, if you can close it..

    Thanks!

    Cheers
    Bruno

    in reply to: Need to modify single.php as an own template #292866

    Hey Josue, thank you!

    Please let me ask some more question. page.php is the template to create pages (like home)? Here I can create an index-page for the different kinds of objects? I just have to change this with my own code and do some changes with css:

    <main class='template-page content  <?php avia_layout_class( 'content' ); ?> units' <?php avia_markup_helper(array('context' => 'content','post_type'=>'page'));?>>
    
                        <?php
                        /* Run the loop to output the posts.
                        * If you want to overload this in a child theme then include a file
                        * called loop-page.php and that will be used instead.
                        */
    
                        $avia_config['size'] = avia_layout_class( 'main' , false) == 'entry_without_sidebar' ? '' : 'entry_with_sidebar';
                        get_template_part( 'includes/loop', 'page' );
                        ?>
    
    				<!--end content-->
    				</main>

    To display a single-object with images eg I need to modify single.php?

    <main class='content units <?php avia_layout_class( 'content' ); ?> <?php echo avia_blog_class_string(); ?>' <?php avia_markup_helper(array('context' => 'content','post_type'=>'post'));?>>
    
                        <?php
                        /* Run the loop to output the posts.
                        * If you want to overload this in a child theme then include a file
                        * called loop-index.php and that will be used instead.
                        *
                        */
    
                            get_template_part( 'includes/loop', 'index' );
    						
                            //show related posts based on tags if there are any
                            get_template_part( 'includes/related-posts');
    
                            //wordpress function that loads the comments template "comments.php"
                            comments_template( '/includes/comments.php');
    
                        ?>
    
    				<!--end content-->
    				</main>

    Cheers
    Bruno

    in reply to: Some issues on Android #266935

    Hey Josue!

    Thank you!!

    Please close

    Cheers!

    in reply to: Some issues on Android #266926
    This reply has been marked as private.
    in reply to: Some issues on Android #266664

    Hey there!

    Something new with the FireFox-Issues on Android, please ?

    in reply to: Some issues on Android #262295

    Hey!

    It´s a HTC One, not the newest that appeared a few weeks ago but one before, Android Version and Firefox

    Best regards

    in reply to: Issues with some inner content width below #260002
    This reply has been marked as private.
    in reply to: Some issues on Android #259894

    Hey!

    Thank you, it seems that there is a lot to fix. These are clients Screenshot from HTC One and it´s version of Firefox:

    Top of the Website in this Firefox Version: 1 (this pic is normally in the last color section at the end)
    Scroll down a little bit: 2
    Breakfast-Section 1: 3
    Breakfast-Section 2: 4

    Best regards

    in reply to: Some issues on Android #259638

    Hey Josue, thanks.

    I fixed it for Desktop Versions on Safari, Chrome, Firefox and Opera. It seems that it work for IE, too. Also for iOS.

    But please can you do me a favor to look with Firefox on Android, I´m just on iOS. I saw it on HTC One 3 hours ago. The Layout was broken complete. The Background-Picture from the last color section was on top of the page and all backgrounds behind the texts were gone away. Do you have the same issues for it?

    Best regards
    Bruno

    in reply to: Why you closed my topic ? #259452

    Hey Peter,

    thanks and please close this one here..

    Cheers

    in reply to: Some issues on Android #258413

    Fixed it with the following on desktop, but on android seems to be still the same issue:

    .avia-section.av-minimum-height .container {width:100% !important;}
    .avia-section.av-minimum-height .container .content {display: table-cell !important;}

    Here

    On Testenvironment its´s the same

    Thank you!

    in reply to: Some issues on Android #258398

    Hey Josue,

    thanks but is not what I need. The Font is stay on top on this way. Can´t understand why this happens. I think it can´t be an plugin issue, I have exactly the same page as clone. With all plugs deactivated it´s the same. There are some other issues with the width of some elements, too. I think it´s since the last update, before it works fine. It´s last version of enfold and wp 3.9.

    I also searched for missing signs in my own style-sheet, all seems fine.. It just causes below 768 px. Please look with resizing your Browser. I doesn´t anything in media-queries what can causes this..

    That´s not great, it´s on clients website and it´s online. All works fine before..

    Please scroll down, the other headings are on top, too. Normally they have to stay in the middle..

    I deactivated caching and minify

    Best regards

    in reply to: Some issues on Android #258335
    This reply has been marked as private.
    in reply to: Issues with some inner content width below #257510

    Hey, thanks. The Account-Datas are still active so you can use them. I deactivated all plugins..

    Cheers

    in reply to: Issues with some inner content width below #257168

    Hey Ismael,

    thanks, it works for responsiveness. This is fixed.

    But the problem with the sharing buttons stay. It isn´t an issue with an plugin. I deactivate them all, also caching and anything else. The problem is exactly the same..

    Best regards

    in reply to: Issues with some inner content width below #255984

    Hey Peter, please try again. It seems that there was a little issue since update to wp 3.9. It works now.

    What´s with the responsiveness .. It can´t be an Plugin-Mistake, cause on this page it works..

    Google+ doesn´t work on safari, too.

    Cheers

    in reply to: Issues with some inner content width below #255171
    This reply has been marked as private.
    in reply to: Issues with some inner content width below #254930

    Hey Ismael!

    It causes the same conflict if I deactivate the Minify. I´ve deactivate also W3TC.. Please have a second look, also for the sharing buttons in the post..

    Thanks for the code.. But did nobody else have this issue ?

    Best regards
    Bruno

    in reply to: Issues with Blogroll on a client site #249101

    It helps! Works like a charm, now.. Thank you Ismael. Please close!

    Best regards

    in reply to: Issues with Blogroll on a client site #248961
    This reply has been marked as private.
Viewing 30 posts - 61 through 90 (of 234 total)