You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've registered this
Shortcode::register('colmd3', 'App\Shortcodes\ColumnShortcode@colmd3'); into my ShortcodesServiceProvider
while applying it's working fine
[colmd3 class="col-sm-4"]
[/colmd3]
but extra class is not applying
[colmd3 class="col-sm-4 text-center"]
[/colmd3]
This is my ColumnShortcode provider
class ColumnShortcode
{
public function colmd3($shortcode, $content)
{
return sprintf('<div class = "col-md-3 %s">%s</div>', $shortcode->class, $content);
}
}
Please help, Thank you
The text was updated successfully, but these errors were encountered:
I've registered this
Shortcode::register('colmd3', 'App\Shortcodes\ColumnShortcode@colmd3'); into my ShortcodesServiceProvider
while applying it's working fine
but extra class is not applying
This is my ColumnShortcode provider
Please help, Thank you
The text was updated successfully, but these errors were encountered: