Forum Replies Created

Viewing 15 posts - 31 through 45 (of 752 total)

  • Tony
    Moderator
    in reply to: filter gallery

    Hi Pawel,
    It’s not possible, however, you can try the solution like so:
    – Disable All Items(Filter control).
    – Add the extra tag name ALL for all item tags you wish to show ๐Ÿ™‚
    Please give it a try and let me know if it works for you


    Tony
    Moderator
    in reply to: Why load external css?

    Hi there,
    “Interested to know why it isnโ€™t local or combined into existing files”
    This is the css layout for the Greennature theme. Gantry compiled the css code based on page layout automatically, example home layout with id 23 that’s why you can see the css prefix layout like theme_name_ID.css where ID is the layout ID.

    NOTE: if you want to group all css files into single css file, try to use JCH plugin.


    Tony
    Moderator
    in reply to: Joomla 4

    Hi Moti,

    We are waiting for the final Gantry5 core plugin release, you can see the latest commit here https://github.com/gantry/gantry5/tree/feature/v5.5.0
    “Do you have Joomla 4.02 templates available with Gantry 5 (or later)?”
    We do not plan to release new template at the moment, We will focus on template update with Joomla 4, update the old template to Gantry5 framework and release the WordPress version for some themes. Here is the short overview.

    1. Our gantry5 particles will be updated to compatible with Gantry5 5.5 and Joomla 4 first. I’m working on 2.1.6 beta.
    2. We will start to release the update for Joomla 4 for all Gantry-powered themes next month(I hope the final release for Gantry5 5.5 will be released as soon as possible)
    3. For Warp 7 and Helix 3 based templates:
    3.1: Warp7-powered themes will be ported to Gantry5 framework (at the end of this year)
    3.2 Helix3 powered themes will be updated to Helix Ultimate 2 (at the end of this year)

    About Joomla 3.10 support Lifecycle
    Users can expect continued support for old templates(based on Warp7 or Helix3 framework) throughout the life of Joomla 3.10, which is expected to be 2 years from the time it becomes available.

    Again, I recommend you stay with Joomla 3.10 at the moment, some components like Unite slider, K2, J2store, VM are not compatible with Joomla 4 at the moment ๐Ÿ™‚


    Tony
    Moderator
    in reply to: Pricing Table – Slider – First Column Sticky

    Hi Lisaa,
    I replied your ticket id.
    Thanks


    Tony
    Moderator
    in reply to: Joomla 4

    This issue happened to Gantry core particle (Joomla articles) too. You can follow the working process by Gantry team here https://github.com/gantry/gantry5
    New V5.5 feature https://github.com/gantry/gantry5/tree/feature/v5.5.0
    Gantry5 future plans https://github.com/gantry/gantry5/issues/2789

    Again, Please stay with Joomla 3.10 at the moment ๐Ÿ™‚

    Thank you


    Tony
    Moderator
    in reply to: Content SliderWP no HTML

    Hi there,
    Could you please give me a screenshot your particle setup and the code for post content so I can check it ? Did you get the same result with the default WordPress Posts particle ?


    Tony
    Moderator
    in reply to: Add a section to the layout
    This reply has been marked as private, meaning that only the original poster and forum moderators can see the content of the reply.

    Tony
    Moderator
    in reply to: Add a section to the layout

    Hi there,
    1. You need to define the top section via template_folder/gantry/theme.yaml
    2. Create a new top style configuration at template_folder/blueprints/styles/top.yaml
    3. Adding new color variable for top section. Open template_folder/scss/configuration/_colors.scss then add

    // Top
    $top-background:				#484a4e !default;
    $top-text-color:				#ffffff !default;
    

    above the header color variables.
    4. Adding new scss file for top section. Create _top.scss file and add it to template_folder/scss/greennature/
    Open _top.scss file then add

    #g-top {
    	background: $top-background;
    	color: $top-text-color;
    	position: relative;
    	.g-content.g-particle {
    		margin: 0 $content-margin;
    		padding: 7px $content-padding;
    	}
    }
    
    @media print {
    	#g-top {
    		background: #fff !important;
    		color: #000 !important;
    	}
    }
    

    5. Open template_folder/scss/greennature.scss then add

    // Top
    @import "greennature/top";

    6. Now, if you check the style configuration, you can see the Top panel style appear above the header, like this https://imgur.com/VqejtlE
    7. In the next step, we will add the top section into an existing layout or global layout.
    A: Adding top section for global default layout (base outline).
    here the default layout https://imgur.com/DjXufNq
    Now open template_folder/layouts/default.yaml then add
    /top/: { }
    then reload the default layout. See https://imgur.com/0AlRHH9
    Do the same for the layout that you wish to implement the top section.
    B: Adding top section for existing layout.
    You can check the current layout ID then modify it. For example, the home page layout id look like http://domain/greennature/administrator/index.php?option=com_gantry5&view=configurations/23/layout&theme=jl_greennature_pro&5cd303cc1135b87ad7b25d3c57f18b9c=1
    As you can see, 23 is special layout id for home page.
    Now open template_folder/custom/config/23/layout.yaml and do the same step above.

    Please wait, I will add a custom template version for you to take a look how it works


    Tony
    Moderator
    in reply to: Joomla 4

    Hi there,
    Please wait, We are working for J4 update and Gantry5 based themes, the new release for Gantry5 that support J4 is coming https://github.com/gantry/gantry5

    At the moment, I recommend you stay with Joomla 3.10.

    Thank you

    • This reply was modified 2 years, 8 months ago by Tony.

    Tony
    Moderator
    in reply to: Gantry 5 Framework

    Hi there,
    If you install the theme that based on Gantry5 framework, you need to download and install the Gantry5 framework plugin here http://gantry.org/downloads#joomla
    Thank you


    Tony
    Moderator
    in reply to: JL Modal – content width

    You can open jlmodalmodule.html.twig find line 157 then remove the css class jl-width-1-4@l


    Tony
    Moderator
    in reply to: JL Modal – content width
    This reply has been marked as private, meaning that only the original poster and forum moderators can see the content of the reply.

    Tony
    Moderator
    in reply to: JLcontentgrid image size

    You’re welcome.


    Tony
    Moderator
    in reply to: ARC PRO administrator problem

    Hi Robert,
    The issue caused by http(s) redirect. I just enabled the “Force HTTPS Redirect” via Cpanel config and set the ssl for Joomla(entire site). The site working fine now.
    Thank you


    Tony
    Moderator
    in reply to: JLcontentgrid image size
    This reply has been marked as private, meaning that only the original poster and forum moderators can see the content of the reply.
Viewing 15 posts - 31 through 45 (of 752 total)
JoomLead Gantry5 Particles 2.2.10 released, new features, bug fixes and more Learn more
Flash Sale. Get Up to 25% Off - Coupon: FLASH25 Shop Now