etc., so developers can change the theme easily? Also, some filters would be cool to be able to change the output, ie
apply_filters('rd_blog_name',bloginfo('name'));
also, all the theme functions should be wrapped in
if(!function_exists('rd_social_icons'))
so the developers can easily change the output of the functions... Basically, adding as many hooks/filters as possible and wrapping all the functions in function_exists would make the theme way more extensible.
Hi,
I bought TheFox template, and while I really like it, I miss at least some hooks and filters to be able to modify the theme.
Could you please add some actions hooks, like in the header.php:
etc., so developers can change the theme easily? Also, some filters would be cool to be able to change the output, ie
also, all the theme functions should be wrapped in
so the developers can easily change the output of the functions... Basically, adding as many hooks/filters as possible and wrapping all the functions in function_exists would make the theme way more extensible.
Thanks
Vasik
Hello Vasik, thanks for purchasing Thefox!
Thanks for the feedback, nice to hear some feedback about the programming side.
We will let our dev team know about your suggestions
Do not hesitate to contact us if you have other questions.
Regards
---------------------
Hosting we recommend ( Free SSL and CDN included in all plan ).
Speed up your site with Autoptimize
Test your site with GTmetrix and fix the issue to make it faster
How to Update your Theme
I deeply facilitate that request
This should be added in our next update!
---------------------
Hosting we recommend ( Free SSL and CDN included in all plan ).
Speed up your site with Autoptimize
Test your site with GTmetrix and fix the issue to make it faster
How to Update your Theme
Has this been added yet? I'm looking to add text to the left and to the right of the logo, in the header type 18. http://grab.by/Sa76
Is there any documentation showing which hooks and functions are available for use in the header? Thanks!
Hello Freshy Sites,
We added hooks for all our functions and shortcodes but the header is generated dynamically with the theme options.
You should be able to change it using a child theme and by copying the header.php to your child theme directory.
Do not hesitate to contact us if you have more questions.
Regards.
---------------------
Hosting we recommend ( Free SSL and CDN included in all plan ).
Speed up your site with Autoptimize
Test your site with GTmetrix and fix the issue to make it faster
How to Update your Theme
Where can I get the hooks for all your functions and shortcodes?
Hello,
You need to check the php files, for the shortcode check thefox/functions/rd_shortcodes
You will be able to see something like this :
if (!function_exists('blog_sc')) {
This is what you need to use in your child theme :
if (!function_exists('blog_sc')) {
The modified shortcode here.
}
Same for the functions.
Do not hesitate to contact us if you have more questions.
Regards.
---------------------
Hosting we recommend ( Free SSL and CDN included in all plan ).
Speed up your site with Autoptimize
Test your site with GTmetrix and fix the issue to make it faster
How to Update your Theme