-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix double parameters creation for parameters of home template and of template override #12688
Conversation
Default template seems to work fine but setting template via URL does not, params are still missing. |
@SharkyKZ The array $templates, already has parameters created for all template @Espionage724 @csiteru |
I have tested this item ✅ successfully on 5b4816f This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/12688. |
@ggppdk I have not changed with the latest madifications. All T3 templates have default settings... |
They may have similar problem in their custom, myself i usually use 2 other template makers, but i think have a few from them too, if i get time i might test T3 template case
|
I have tested this item ✅ successfully on 5b4816f This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/12688. |
RTC This comment was created with the J!Tracker Application at issues.joomla.org/tracker/joomla-cms/12688. |
Thanks! |
Hi! joomla-cms/libraries/cms/application/site.php Line 440 in 5b4816f
$template = $templates[$id]; is always = 0, and template style set defaunt. joomla-cms/libraries/cms/application/site.php Line 506 in 5b4816f
|
@csiteru |
@ggppdk |
Yes please open a new issue with that video than :) |
… template override (joomla#12688) * Fix double parameters creation for parameters of home style * Fixed double creation of parameters for template override
Does anyone have a fix when using a T3 template with two assigned styles running on 3.6.4? I have a logged in area I need to use a different template / menu system on but it is always displaying the default template when seo is turned on. Thanks |
I suggest that you contact t3 diectly as we can only support issues in the On 10 November 2016 at 15:52, Lee Tempest [email protected] wrote:
Brian Teeman |
Pull Request for Issue #12651
Summary of Changes
The home template styles are cloned, inside the foreach loop (see the modified code) and then added to the same array: $templates
as $templates[0]
thus parameters creation for template home: $templates[0]
will happen twice
Testing Instructions
Styles are applied as configured
Documentation Changes Required
none