robin90
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Clean Retina] turn off menu-buttons sortingHi,
You can create your own custom menu then drag and display them anyway you like. Have a look at this
http://codex.wordpress.org/Appearance_Menus_ScreenRegards,
Theme HorseForum: Themes and Templates
In reply to: [Clean Retina] Thumbnails on the Corporate Layout HPHi djoanpetersen,
The images in corporate layout are designed to shown in that way. If you want to modify it to be larger than you have to write your own custom css.
Regards,
Team HorseForum: Themes and Templates
In reply to: [Clean Retina] Posts wont displayHi designnutter,
If you want to create Blog page showing all the posts then create a category called Blog and check all the posts that you want to show under blog category. Make this category as menu.
In our future update we will provide blog page template that will list all the post.
Regards,
Team Horse.Forum: Themes and Templates
In reply to: [Clean Retina] SliderHi AnneMar279,
Go to theme folder clean-retina->library->structure->header-extensions.php
You will see the code in header-extensions.php
If you have any other query please create a new thread.
Regards,
Team HorseForum: Themes and Templates
In reply to: [Clean Retina] New version?Hi fdelorme
You can see the readme.txt file within the theme for the changelog, OR follow @theme_horse or like our page at https://www.facebook.com/themehorse
We will keep you updated their with our activities and also with the changelog for every updates.Regards,
Team HorseForum: Themes and Templates
In reply to: [Clean Retina] How to use the Gallery page templateHi djoanpetersen,
Curently, We have not created page template for gallery layout.If you like to show images as gallery as shown in our demo then you can follow this documentation
http://www.themehorse.com/theme-instruction/clean-retina/#galleryAnd also this gallery layout only supports images not video. We will think about this features in our upcoming update.
Regards,
Team HorseHi Cantello,
Go to Appearence->Theme-Options->Design Options->Custom CSS
And Paste the following CSS and click on save all changes..entry-meta .category { display: none; }Regards,
Team HorseForum: Themes and Templates
In reply to: [Clean Retina] Do Not Have PermissionHi iamrwood,
That shouldn’t be a problem with our theme. Does this happen with our theme only. Try to switch the theme and check if the problem still persists.
Regards,
Team HorseForum: Themes and Templates
In reply to: [Clean Retina] cleanretina_custom_tag_widget titleHi epigrapisa,
You can pass the title as arguments just replace
<?php the_widget( 'cleanretina_custom_tag_widget'); ?>with
<?php the_widget('cleanretina_custom_tag_widget', 'title=Renamed_Tags'); ?>Here Renamed_Tags can be any text you want to display.
Hope this solves your issue.
Regards,
Team HorseForum: Themes and Templates
In reply to: [Clean Retina] Bug in Clean Retina 1.2.1Hi PattayaNic,
We have checked Clean-Retina version 1.2.1 with WordPress 3.5 and its working fine over here. Theme options setting and upload buttons are working fine. Seems there was something wrong while you upgrade the WP.Please try reinstalling the theme and deactivating all plugins and let us know if the problem still persist.Regards,
Team HorseForum: Themes and Templates
In reply to: [Clean Retina] SliderHi AHPhoto,
It seems you are doing something wrong. The above mentioned code should be implemented in functions.php of your child theme. Please Contact us through the contact form from our website http://www.themehorse.com/ and I shall provide you the necessary file needed for creating those child theme.
Regards,
Team HorseForum: Themes and Templates
In reply to: [Clean Retina] SliderHi Bill Weye,
Thanks for your reply on this thread.
The instructions that I have prescribed above will override that particular function and works perfectly if you are using the latest version of clean-retinaIf you look deeper into the theme, below mentioned functions are plugabble.
cleanretina_pass_cycle_parameters
cleanretina_comment
cleanretina_socialnetworks
cleanretina_home_slogan
cleanretina_featured_post_slider
cleanretina_breadcrumbMeaning that these function are coded like this in theme,
if ( ! function_exists( 'function_name' ) ) : function_name() { //all coding goes here } endif;cleanretina_featured_post_slider function is also coded this way, so
just writing the same function in the child theme’s functions.php file would easily overwrite it.
And now, yes our theme has lots of action hook, many other functions(not the one mentioned above) are hooked to different action hooks. Now to overwrite those functions the child theme maker will have to follow the steps that you told.
Yes this method looks tedious for a while for just one function. i.e.
Remove the function first(your first step)
Add the first function to after_setup_theme(second step)
Finally add new custom function to the action hook.But if you have many functions to be changed then keep on adding those function inside the first function remove_thematic_actions() in your case in the remove_action function.
Then, keep on adding your custom functions.Pluggable function is just a function which the child theme maker can modify, but action_hook is like the place in the theme where the child theme maker gain the power do what ever on that place(add more and more function, one after another setting the priority level, remove the parent hooked functions, alter them or anything). The main idea of our theme is to set many action hooks in every possible place and hook the functions to those hooks. So, each and every bit part will be customizable. Also most of theme frame-work make extensive use of action hooks due to this same purpose.
I appreciate your participation in the thread. Please feel free if there is anything I can further illustrate.
Regards,
Team HorseForum: Themes and Templates
In reply to: [Clean Retina] SliderHi AHPhoto,
Thanks for appreciating our theme.
Currently we don’t have such feature. But if you want to achieve this, you have to create child theme. If you don’t know about child theme then here is the link from codex http://codex.wordpress.org/Child_Themes. Its quite easy. Then go to structure->header-extenstion.php and copy this function
cleanretina_featured_post_slider. Create functions.php in your child theme and paste the above function. Then just replace this line$cleanretina_featured_post_slider .= '<figure><a href="' . get_permalink() . '" title="'.the_title('','',false).'">';</a> with this $cleanretina_featured_post_slider .= '<figure><a title="'.the_title('','',false).'">';</a> and this line $cleanretina_featured_post_slider .= the_title( '<span>','</span>', false ).$excerpt.'<a href="' . get_permalink() . '" title="'.the_title('','',false).'">'.__( '... Continue Reading', 'cleanretina' ).'</a>'; with this $cleanretina_featured_post_slider .= the_title( '<span>','</span>', false ).$excerpt;Hope this will solve your issue.
Regards
Team HorseForum: Themes and Templates
In reply to: [Clean Retina] remove title and tag cloud pageHi epigrapisa,
You can do the same as done for page title. Just replace the above code with this in your custom css.page .entry-title, .page .entry-title a, .entry-meta{ position: absolute !important; clip: rect(1px 1px 1px 1px); /* IE7 */ clip: rect(1px, 1px, 1px, 1px);}Regards,
Team HorseForum: Themes and Templates
In reply to: [Clean Retina] Corporate Layout and latest post pages?Hi Andrea,
If you want to have both corporate layout and latest posts in your site. Then create a category and assign all the post to this category. Then use this category as menu in your website. Currently I feel this is the only way to achieve what you have mentioned. But soon we will be making corporate layout a page template so that you have option to show it along with other posts at same time. So be tuned with our upcoming updates.Regards,
Team Horse.