darossi
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Robolist Lite] Multiple locationsHI, how about if I entered multiple locations in one go, e.g. “Smallville, Mediumville, Bigville” – if I then searched for any of those locations from the main search page, it will work?
Also, is the location separate from the map entry, in the pro version?
Forum: Themes and Templates
In reply to: [Robolist Lite] Banner not appearing on mobileAfter checking I realised it is showing the image, but it hasn’t resized for mobile, i.e. I’m seeing a close up of one portion of the banner image
Just upgraded to WP 4.5.2 and it works – the upload button I was seeing before is now a Select Image button and all works as expected ??
No – it’s the actual button called “Upload”. When you go to Customize, then to the area where you can choose to Upload a logo and set the max height etc
Hi there – have now upgraded and having the same issue – both the ‘Custom Header Logo’ upload button and the ‘Header Image’ upload button in the Header section when customizing do not work. When clicked nothing happens.
Have tried in Chrome and IE with same result. I am using a child theme if that helps at all.
Is there an alternative way I can change my logo?
Forum: Themes and Templates
In reply to: [Hueman] Comment Count IssueActually a couple of refreshes later and it does seem to have resolved ?? Many Thanks for the help
Forum: Themes and Templates
In reply to: [Hueman] Comment Count IssueThank you for the quick response. I made the changes (my page-title.php was already in the new location on my child theme) but the same thing is happening. On some posts only it’s showing as the comment icon with the number of comments for a very brief moment and then being overwritten with “x Comments”. Anything else I can try?
Forum: Themes and Templates
In reply to: [Hueman] Post Upgrade functions.php (child theme)I think I’ve sorted it…. adding the following to my child Theme seems to have done the trick:
function hu_load() { // Load theme languages load_theme_textdomain( 'hueman', get_stylesheet_directory().'/languages' ); // Load theme options and meta boxes // load_template( get_template_directory() . '/functions/theme-options.php' ); load_template( get_template_directory() . '/functions/init-meta-boxes.php' ); // Load custom widgets load_template( get_stylesheet_directory() . '/functions/widgets/alx-tabs.php' ); load_template( get_template_directory() . '/functions/widgets/alx-video.php' ); load_template( get_template_directory() . '/functions/widgets/alx-posts.php' ); // Load dynamic styles load_template( get_template_directory() . '/functions/dynamic-styles.php' ); }
Forum: Themes and Templates
In reply to: [Hueman] Comment Count IssueApologies, the links I included in the above don’t appear to have worked.
Usually it looks like “<icon> 3” for example. But now it looks like “3 Comments” instead with the icon not showing.
Forum: Plugins
In reply to: [Post Views Counter] Font awesome instead of dashicons?I’ve managed to do this simply by using the fontawesome code in the label field.
Forum: Themes and Templates
In reply to: Fixed number of random widgets?Thank you ??
Forum: Themes and Templates
In reply to: Fixed number of random widgets?I found this on stack exchange:
if( !is_admin() ) { add_filter( 'sidebars_widgets', 'sidebar_so_23691473' ); } function sidebar_so_23691473( $sidebars_widgets ) { shuffle( $sidebars_widgets['sidebar-widgets-header'] ); $only_one = array_slice( $sidebars_widgets['sidebar-widgets-header'] , -1 ); $sidebars_widgets['sidebar-widgets-header'] = $only_one; return $sidebars_widgets; }
That seemed to work for the original requestor who was asking how to show only 1 out of 3 widgets in their header (original post here: https://stackoverflow.com/questions/23691473/how-to-rotate-widgets-in-a-sidebar).
Could I adapt this to rotate 3 out of 6 widgets in my sidebar? Which bit would I need to change?…
Forum: Themes and Templates
In reply to: [Hueman] Page-title – change color depending on category?it fixed it ??
Forum: Themes and Templates
In reply to: [Hueman] Page-title – change color depending on category?Ah think it might be this causing the issue (I found this on another support article)
function add_category_to_single($classes, $class) {
with this:
function add_category_to_single($classes) {
Forum: Themes and Templates
In reply to: Fixed number of random widgets?Hello, I would like to show, for example, any 3 widgets from 6. In other words, I have 6 widgets in a sidebar, but I want to only show (randomly) any 3 of them, in a random order.