Great theme, just a few things i'd need help w/

Support Forums for LiveMesh Themes & Plugins Forums Appdev Theme Support Great theme, just a few things i'd need help w/

Viewing 15 posts - 1 through 15 (of 23 total)
  • Author
    Posts
  • #12982

    Hi !

    First off, let me say that your theme appdev is relly nice ! i use it for a friend’s website, and while i initially made it 1 page and it looked great IMO, the theme also works out as a minimalistic, multi-page WP website !

    There are a few things i’d like your help with althought i’m not entirely sure it concerns your theme directly, rather scripts and codes your theme uses :

    #1 http://www.bastienv.me/c/hki/about-hooki/ : On this page, i’d like to have the image slide up as soon as the page has stopped loading , instead of on the first mouse move. Because this page is actually very short, it doesn’t make sense for the visitor to scroll, therefore i’m afraid they will miss it; However i like the effect so i’d like to have at least something similar. How would I do that ?

    #2 Unless I missed something, there’s no possibility to change woocommerce’s shop page from fullwitdth to 2/3 with right sidebar ? I tried to add a sidebar and played with the page’s style but it didnt seem to change anything. Any help here ?

    There was another thing for the contact page but i don’t remember so i’ll just update this post later !

    Thanks for your help,
    Regards
    Bastien V

    #12985

    Ah, also a weird bug I noticed, but it seems like the “related” products section is not rezised correctly. http://www.bastienv.me/c/hki/product/hooki-shisha-hki003/ very big, and 2 lines. But also i noticed that it’s not responding when i tried to remove it, i edit function.php of your theme with the code i found online, and worked before on other hosting, but somehow for your website it doesn’t show anything ..

    #13025

    Not sure what happened for the “rezised” size, seems like it works when i uploaded woocommerce-integration.php again . However, i’m still struggling with removing the “related” products altogether. The code I mentioned is “remove_action( ‘woocommerce_after_single_product_summary’, ‘woocommerce_output_related_products’, 20 );” , which I put in the theme’s functions.php , however like I said, it seems like it didn’t have any effect.

    #13031
    Veena
    Moderator

    In woocommerce/woocommerce-integration.php file, pls try to comment out line no:25

    add_action('woocommerce_after_single_product', 'mo_woocommerce_related_products', 20);
    

    or you can try the below custom CSS in themeoptions –

    .single-product .related.products {
      display: none;
    }
    
    #13124

    Hi. Thanks for the info. How about for the function #1 I mentioned ?

    #1 http://www.hooki.pro/about-hooki/ : On this page, i’d like to have the image slide up as soon as the page has stopped loading , instead of on the first mouse move. Because this page is actually very short, it doesn’t make sense for the visitor to scroll, therefore i’m afraid they will miss it; However i like the effect so i’d like to have at least something similar. How would I do that ?

    regards

    #13194
    Raghavendra
    Moderator

    When I test your page, the whole animation happens even if I do not move the mouse since the section is already visible (which is how it should work BTW – should not be waiting for mouse scroll). Which browser are you testing the site where the image is waiting for mouse scroll? A workaround for this problem would be to have this piece of code pasted in document.ready event handler (after line number 470 of js/main.js file –

                $('#featured-app h2').appear();
                $('#featured-app h2').on('appear', function () {
                    $('#featured-app .app-screenshot').addClass('visible');
                    var delay = 1200;
                    $('#feature-pointers img').each(function () {
                        $(this).delay(delay).animate({ opacity: 1}, 200);
                        delay = delay + 200;
                    });
                });
    

    Pls let me know if you still face this issue.

    #13343

    Hi,

    Thanks for your help , I was out of town so I couldn’t check your reply until now.

    Before using your script, the error was present on Firefox and Internet Explorer, but not Chrome (did not try other browsers, but web based browser don’t seem to load the animation at all).

    I tried using the script but it didn’t make a difference, however the problem may come from me. Could you send me the wholecode so i could just copy & paste it, make sure the problem is not from a bad “code placement” ?

    /*======================== Document event handling ======================*/
    
    jQuery(document).ready(function ($) {
    
        "use strict";
    
        if (!mo_options.disable_smooth_scroll) {
            $("html").niceScroll({
                zindex: 99999,
                boxzoom: true,
                touchbehavior: false,
                scrollspeed: 60,
                mousescrollstep: 40,
                smoothscroll: true,
                cursorborder: "1px solid #424242",
                horizrailenabled: false
    
            });
        }
    
        /* ---------------------------------- Drop-down Menu.-------------------------- */

    regards

    #13354
    Raghavendra
    Moderator

    Sorry for all the trouble. I found the solution to the issue. Pls replace the code –

    $('#featured-app h2').appear();
                $('#featured-app h2').on('appear', function () {
                    $('#featured-app .app-screenshot').addClass('visible');
                    var delay = 1200;
                    $('#feature-pointers img').each(function () {
                        $(this).delay(delay).animate({ opacity: 1}, 200);
                        delay = delay + 200;
                    });
                });
    

    with

    $("#featured-app").waypoint(function (direction) {
                    $('#featured-app .app-screenshot').addClass('visible');
                    var delay = 1200;
                    $('#feature-pointers img').each(function () {
                        $(this).delay(delay).animate({ opacity: 1}, 200);
                        delay = delay + 200;
                    });
                }, { offset: $.waypoints('viewportHeight') - 300,
                    triggerOnce: true});
    

    and the issue should be resolved. The JQuery Appear plugin seems to have a problem detecting when the element is already visible.

    I am not sending the whole code since it has changed in the latest version of the theme. It won’t work unless you have the latest version of Appdev loaded on your site. Pls give a try or else post me a temp login as a private message here and I can help patch your site installation. The above change will be part of next update. Thanks for reporting this. I am surprised no one else reported this so far.

    #13376

    Hi,

    After working a bit on the website, here’s a list of issues i’d like your help with, thank you ! I’m preparing you FTP + WordPress access and will send it in a separate private message.

    BLOG – http://www.hooki.pro/blog/

    #1 Image No Scroll : For some reason, the image at the top (the orange on top of the hookah) doesn’t scroll going down the page. I’m using the same configuration as other pages but on this one it seems like it’s not working, or i made an error. Any suggestions ?

    #2 Spacing : There’s a weird spacing between the breadcrumbs and the 1st article’s title , but can’t seem to be able to get rid of it. Any input would be appreciated !

    #3 Menu Not showing in post detail : Once you go into the posts details the top menu (HOME/ABOUT/ …) is not showing anymore for some reason. (ex see http://www.hooki.pro/hookah-pipes-101/)

    PROFESSIONNALS – http://www.hooki.pro/pro/

    #1 Icons not showing up : So , i’m not realy sure what the issue here is .. Initially, I created this website on my other godaddy hosting (http://www.bastienv.me/c/hki/pro ) , where, as you can see, icons show up well. All I did was transferring the whole datas to my new server. However, for some reasons, the icons don’t show on hooki.pro/pro . I tried with both my modified page and the original one provided with the theme, but same result, nothing shows up. Any help would be appreciated, thanks !

    ONLINE CATALOG – http://www.hooki.pro/shop

    #1 Top menu not showing up : No matter how hard I try, I can’t seem to be able to have a top menu for this page , nor to change the top image or even having sidebars. Not sure if it’s me that is stupid or not. Anyways, i’m not using this page, but rather http://www.hooki.pro/product-category/featured-products/ . I’m confronted to the same issue thougt, where no mtter how hard i try i can’t seem to make the top menu show up , and change the red background to an image BG .

    #2 Remove/ChangeStuff on page detail : Basically herre i’d like the top menu to show up too ( custom menu that has fewer links than the regular one). I also would like to remove the « Related Products » text (just the title & spacing, not the function itself). Any idea which woocomerce file I’d have to change?=

    VARIOUS :

    #1 Image not sliding on FF/IE : Please help me fix this issue we talked about , thanks. I can’t seem to be able to fix it myself, sorry about that. (http://www.hooki.pro/about-hooki/)

    #Woocommerce cart showing up : I’d like to remove the cart icon/function in top menu, how to do that ? I managed to do it for bastienv.me/hki but can’t seem to be able to remember how I did it .. thanks !

    # Icon not showing up on mobile : As you can see for some reason the icon on mobile doesn’t seem to show up.

    #BLOG COUNT & PRODUCT COUNT : I’m having a weird, dumb bug with this. Basically my issue is that , for the « blog page » (http://www.hooki.pro/blog) , i’d like to have 1 article only with people having the possibility to change pages. For the shop page, I need 8 products / page.

    However, it seems like they both use the information stored in « SETTINGS – READING – Blog pages show at most » . So if 1 put « 1 » , on the blog page i’ll have 1 article only .. but on the woocommerce page i’ll have1 product only too ! Not sure if it’s a wocommerce error or whatnot, but do you have any idea how I could have 1 blog article only but 8 products in my store ?

    #13377
    This reply has been marked as private.
    #13380

    Added : Screenshots (forgot to attach them last time!)

    #13409
    Veena
    Moderator
    This reply has been marked as private.
    #13456

    Hi.

    Thanks for your help, I managed to solve some of the issues while I’d still need need your help for some others, and would like to request assistance for new issues i’m facing. Here are the new issues first, followed by issues I didn’t manage to find a solution to in the forum :

    – Translated (unique) “Get App” Button : I’m currently using “Polylang”, which is free and great for what I need . However, the only 2 issues I’m facing is that I find myself unable to load up a different button for each of the languages I’m having (IE when choosing russian , a link with russian text+link should show up instead). What would be the easiest solution for me to do this without having to purchase WPML ? I’d be a shame to pay for a license just to unlock one function. I’ve tried to use plugins tht allows to create .po/.mo files, but no luck so far.

    – Translated Contact Form : Same here : what would be the best solution to have a different contact form for each language ? i’d like to find a way to have it in russian for example on http://www.hooki.pro/ru/ while keeping it in english on http://www.hooki.pro/

    – Flag/Text css : I tried to add some flag image + text (like i did on some other website) , but in the end the result ends up on 2 lines. Any css hacks I could use to have it all align on 1 line here ? (see screenshot)

    Here are the bugs that i’m still facing and i’d need help with :

    #1 Image not sliding on FF/IE : Please help me fix this issue we talked about , thanks. I can’t seem to be able to fix it myself, sorry about that. (http://www.hooki.pro/about-hooki/)

    BLOG – http://www.hooki.pro/blog/

    #1 Image No Scroll : For some reason, the image at the top (the orange on top of the hookah) doesn’t scroll going down the page. I’m using the same configuration as other pages but on this one it seems like it’s not working, or i made an error. Any suggestions ?

    #2 Spacing : There’s a weird spacing between the breadcrumbs and the 1st article’s title , but can’t seem to be able to get rid of it. Any input would be appreciated !

    ONLINE CATALOG – http://www.hooki.pro/shop

    #1 Image w/ scroll not showing up : So I managed to make the sidebar appear .. but not yet the scroll image like you have on your demo ! I must be missing something .. is there any special configuration i need to do ? you can check, i select the image on the right field, select scroll .. maybe the template isn’t right ? Any help to fix it would be really appreciated.

    #13457

    Lang Image added

    #13490
    Veena
    Moderator

    Pls ask all your doubts regarding polylang plugin in their support forum –
    https://wordpress.org/support/plugin/polylang, they will give right directions to solve your polylang issues.

    https://polylang.wordpress.com/documentation/frequently-asked-questions/the-language-switcher/

    #1 Image not sliding on FF/IE – Have you replaced the code in main.js file?

    BLOG – http://www.hooki.pro/blog/

    #1 I can see that the title area background image is parallax. Hope you have fixed the issue.

    #2 I am not finding any spacing issue there. In which browser you are facing this issue?

    ONLINE CATALOG – http://www.hooki.pro/shop

    I am getting “404 Not Found” Error here.

Viewing 15 posts - 1 through 15 (of 23 total)
  • The forum ‘Appdev Theme Support’ is closed to new topics and replies.