- This topic has 1 reply, 2 voices, and was last updated 10 years, 8 months ago by Theme Horse Support Team.
-
AuthorPosts
-
April 2, 2014 at 12:59 pm #9185AsparuhParticipant
Hello,
my Name is Asparuh and i have recently purchased the clean retina pro theme. The theme is great and works well on my site:
In order to make the site look better, i have a couple of questions:
1) one of the languages on the site is bulgarian and the theme doesn’t look to respond to any font change from the typographic options. Also tried with cyrillic fonts, but with no success. Any other suggestions?
2) I would like to add the source code of a Transposh translation widget in the header. Here is the code:
<?php if(function_exists(“transposh_widget”)) { transposh_widget(array(), array(‘title’ => ‘Translation’, ‘widget_file’ => ‘flags/tpw_flags.php’)); }?>
Where is the right place to paste the code in?
3) Can i change/replace the form of the circle images in the corporation template with some other “normal” images?
Thanks for the help in advance
best regards
Asparuh
April 3, 2014 at 6:16 am #9215Theme Horse Support TeamKeymasterHi Asparuh
1) one of the languages on the site is bulgarian and the theme doesn’t look to respond to any font change from the typographic options. Also tried with cyrillic fonts, but with no success. Any other suggestions?
==> Its working fine here in our theme. The theme font we have provided is there listed. For more options of font we will think about it in our comming version.
2) I would like to add the source code of a Transposh translation widget in the header. Here is the code:
<?php if(function_exists(“transposh_widget”)) { transposh_widget(array(), array(‘title’ => ‘Translation’, ‘widget_file’ => ‘flags/tpw_flags.php’)); }?>
Where is the right place to paste the code in?
==> if you are good in coding then you can change but we still not recommend you not to change it. Because while updating to our new theme then your customization code will be lost.
If you really want to paste the code then. You can create a side bar.
The sidebar is located inside wp-content\themes\clean-retina-pro\library\widgets\cleanretina_widgets.php
you can add code to create the sidebar.
and to paste this code
<?php if(function_exists(“transposh_widget”)) { transposh_widget(array(), array(‘title’ => ‘Translation’, ‘widget_file’ => ‘flags/tpw_flags.php’)); }?>Goto wp-content\themes\clean-retina-pro\library\structure\sidebar-extensions.php
Create the function with add_action() function hook and you can call this function inside header.php using do_action();
You can also research add_action() hook in wordpress.org
3) Can i change/replace the form of the circle images in the corporation template with some other “normal” images?
==>To change change/replace the form of the circle images Go to Appearance -> Theme Options -> Design Options Tab -> Custom CSS paste the following CSS code and Click on save all changes button:
.services-item .service-icon, .services-item .service-icon img { -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; height: inherit; width: inherit; }
Regards
Sunil -
AuthorPosts
- You must be logged in to reply to this topic.