Deprecated: Function get_currentuserinfo is deprecated since version 4.5.0! Use wp_get_current_user() instead. in /var/www/html/wp-includes/functions.php on line 5383

satori

Forum Replies Created

Viewing 10 posts - 261 through 270 (of 1,561 total)
  • Author
    Posts
  • in reply to: Wordpres 4.0 slider lag #3990
    mmsatori
    Keymaster

    Thank you for the kind words, Denis!
    Should something else pop up, do not hesitate to contact me.

    Sincerely,
    Andrii / Satori Studio

    in reply to: Wordpres 4.0 slider lag #3988
    mmsatori
    Keymaster

    Hey Denis,

    I’ve looked into the Customizer problem and found a compatibility issue in the new versions of WP with a script that generates custom sidebars in the theme; added the necessary fix to your “functions.php” file (the 5 lines at the very bottom), now the Customizer works as intended. My apologies for the bug, and thank you for bringing this up!

    Regarding the slider issue: you can try using website speed tests and similar tools to determine which resources are being used during the website load and how often.

    Sincerely,
    Andrii / Satori Studio

    in reply to: Exclude box fro homepage #3976
    mmsatori
    Keymaster

    Hey e.,

    in your case, since you’ve used the term ID’s in the exclusion algorithm, you need to change the line:

    'field' => 'slug'
    

    to

    'field' => 'term_id'
    

    Also, you need to manipulate the query code of the original “page_portfolio.php” theme file, because if you create a totally new template file, you will need to alter other templates so that the system knows that it also needs to apply the isotope routines which create the masonry tiled layout (since two separate portfolio pages were not originally envisaged in Ikebana). Namely, you would need to add an extra condition

    || is_page_template('page_peros.php')
    

    everywhere there is a statement

    is_page_template('page_portfolio.php')
    

    i.e. in “header.php”, “header-functions.php”, “custom-styles.php”, “/includes/pager/pager.php”.

    Sincerely,
    Andrii / Satori Studio

    in reply to: Exclude box fro homepage #3974
    mmsatori
    Keymaster

    Hey Galini,

    this hasn’t been envisaged in the theme – by design the portfolio page displays all projects, and the tag archive pages display projects belonging to certain tags. However, this can be done via some template code customization, and I’ve already provided the relevant code in this thread. Let me know if you have any questions on that one!

    Sincerely,
    Andrii / Satori Studio

    in reply to: A list of suggestions for improvements #3973
    mmsatori
    Keymaster

    Hey Jonas,

    please find my comments below:

    10). Thanks! I’ve added an extra filter into the “functions.php” file, now the message appears in the correct order (no idea why WooCommerce would want to make it in that order by default). It will be included into version 1.3 of the theme as well.

    11). Yes, in Shogun 1.3 the logo will disappear on scroll by default in case the centered header layout is chosen.

    Regarding your question about disabling the scripts: yes, you can just comment out / remove the lines which register and enqueue the respective scripts in the “functions.php” file just like you’ve illustrated.

    As an aside: I’d recommend installing a caching plugin only when the website is fully completed – if still in development, it might hinder you from applying changes to the code (you probably know that, but though I’d mention it just in case).

    Best,
    Andrii / Satori Studio

    in reply to: Button Learn More #3969
    mmsatori
    Keymaster

    Hey Galini,

    please try this CSS:

    #page-holder-21 .page-content .su-button { background-color: #ffffff; }
    #page-holder-21 .page-content .su-button:hover { background-color: #ffffff; }
    

    replacing the #ffffff in both cases with the needed color in HEX notation; the second declaration is for the hover state. In case you wish to modify the background color for all shortcode-generated buttons, you can use this instead:

    .su-button { background-color: #ffffff; }
    .su-button:hover { background-color: #ffffff; }
    

    Sincerely,
    Andrii / Satori Studio

    in reply to: Exclude box fro homepage #3968
    mmsatori
    Keymaster

    Hey e.,

    do I understand correctly: you need to create a page equivalent in functionality to a “tag-portfolio” page, but without the “tag-portfolio” part in the URL?

    Sincerely,
    Andrii / Satori Studio

    in reply to: A list of suggestions for improvements #3967
    mmsatori
    Keymaster

    Hey Jonas,

    thank you for the extensive suggestions and comments!

    I will take them in in bits :) here are preliminary comments to the respective items:

    1. Pop-up images are being ‘cut off’ by the header – I’ve added the z-index declarations to the theme core, thank you for bringing this up!

    2. Add breakpoints to masonry tiles (+ more) – added breakpoints for smaller screens (767px and less), will include them into version 1.3 of the theme (you can see how it works here).

    3. Add custom margin option for masonry tiles – will consider adding this option to the next version, thanks!

    4. Add option to choose fitting style for masonry tiles – the theme envisages the portfolio items as either squares (1×1) or rectangles with the sides as multiples of the smallest square (i.e. 2×3, 1×2, etc), so far I haven’t got an idea how to reconcile this with your proposed feature.

    5. Add thumbnails option to masonry tiles – this might also be an interesting feature for the upcoming versions.

    7. Add overlay on Visual Composer elements – there is indeed an option to have portfolio-like overlays on VC elements, namely the Posts Grid items – you can see how it works on the front page of the theme demo, where the 6-item portfolio extract has been created using the Posts Grid VC element. Have you tried using Posts Grid?

    8. Titles on masonry tiles – hm, in this case again it is a question of design – in Shogun’s masonry portfolio template the titles are displayed on top of the items, as overlays.

    10. Added to cart message – could you please tell me where exactly does the message appear? I cannot seem to be able to locate it.

    11. Make it possible to hide logo completely / make minimisation of header happen earlier – I’ve included the feature whereby the logo is being hidden on scroll automatically when the user chooses the centered header layout to the theme core, thank you for this one! On your website, I can currently see that the logo first becomes smaller (smoothly), and then disappears on scroll – have you made changes to the code, or does it look different on your machine? Regarding the timing of the disappearing of the logo and minimization of the header, you can try tinkering with the number parameter on this line in the header-functions.php file (should be around line 926, depending on your theme version):

    var homax = homore + 20;
    

    If you make the “20” smaller or 0, the menu will contract earlier.

    13. Previous/Next project/blog post – if I understood you correctly, such a feature already exists in the theme – see e.g. this project. Did I misunderstand your question? Regarding the “back to portfolio” button – the problem is that the theme has no way of telling which page is considered as the portfolio in a particular website set-up; but I will think of how this could be circumvented, e.g. by letting the user pick one manually.

    Sincerely,
    Andrii / Satori Studio

    in reply to: Showcase your website based on Kanso #3965
    mmsatori
    Keymaster

    Hey Galini,

    thanks for the link, nice work with the sections and the wireframe icons ;) Good luck with the project!

    Best,
    Andrii / Satori Studio

    in reply to: Space between the box #3951
    mmsatori
    Keymaster

    Hey e.,

    this is not an error, rather an intended behaviour – on masonry pages the content area with tiles is wider than the header since each tile has a margin all around it, yet the content area does not have a background color by design, so the header needs to be slightly thinner to remain in line with the edges of the first and last tiles in a row.

    In your situation, since you’ve declared a background on the tile content area, you can expand the header width to fit the former, by editing one line in the theme’s “custom-styles.php” file (located in the main theme folder):

    on line 102, replace the “$finalwidthheader” with “$finalwidthheadernp”, i.e. replace

    #header-box { max-width: px !important; }
    

    with:

    #header-box { max-width: px !important; }
    

    Please let me know if achieves the desired effect!

    Sincerely,
    Andrii / Satori Studio

Viewing 10 posts - 261 through 270 (of 1,561 total)