tomaja
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Width of SliderFor reducing slider height you can try this snippet. Width options are available in Customizr options, http://www.umidtech.com/wp-admin/customize.php , tab “Front page”, slider full width option
Forum: Themes and Templates
In reply to: [Customizr] Move Post TitleHi @satrntgr,
for moving post header to the bottom of the post you can use this code, just add it to your function.php in child theme:add_action ('__before_body' , 'move_post_header'); function move_post_header() { remove_action ( '__before_content' , array( TC_post::$instance , 'tc_post_header' )); add_action ( '__after_content' , array( TC_post::$instance , 'tc_post_header' ), 1); }This works for full posts. Hope it helps.
Forum: Themes and Templates
In reply to: [Customizr] Dynamic featured pageHi Michael,
you can create custom page template for Customizr child theme like I did here at http://pastebin.com/zFYFgJZT for you. It will show only lastst post excerpt, so what you need to do is to take this code and make e.g home.php file, copy it to root of your Customizr child theme folder, and then you need to create a page that will be shown on your Front page with “latest post page template” selected.
Basically I added<?php query_posts('showposts=1'); ?>to default Customizr index.php fileDid you also transfered .htaccess file from your previous host?
Try to disable it for a moment and check again for error. It seems that GoDaddy has some issues with it.Forum: Themes and Templates
In reply to: [Customizr] Footer Edit – class-footer-footer editYou should use this snippet for altering/adding default credits.
Replace your corrupted class-footer-footer_main.php with the original one from the Customizr install.Hi,
this snippet should help you.You could use just html/css to make menus in custom text widget, check http://cssmenumaker.com/css-vertical-menus
There are also few plugins/widgets that might fit your needs.Forum: Themes and Templates
In reply to: [Customizr] I do I get rid of the "Add Menu" button?You are welcome. If you want, you can make this thread resolved. Thanks.
Forum: Themes and Templates
In reply to: [Customizr] Blog PostingWhat I did to achieve this was to create an empty page with name “blog”. Then select in options (http://rivasdigitalmarketing.com/wp-admin/customize.php ) look at “Front Page” tab that static content is shown on the front page and your new blog page to act as post page.
After that you can add link to the your new blog page in your main menu.
Regarding that hello page of yours, you can change that at the same place. Please read the Customizr documentation about Front page settings here.Forum: Themes and Templates
In reply to: [Customizr] [Theme: Customizr] Remove footer logo.It should be working, its tested numerous times. Did you clear your cache ?
Forum: Themes and Templates
In reply to: [Customizr] Cant Change my footer.php@manavmittl
You should make Customizr child theme and then make changes. It is VERY GOOD practice. If you change theme files directly in Customizr theme there is a possibility of loosing all changes after theme update. So instead you change class-footer-footer_main.php in Customizr you can change that file in Customizr child theme without any worries. Same goes for all default files, including functions.php
In above post you have a link to visual howto create child theme from the parent one.Forum: Themes and Templates
In reply to: [Customizr] I do I get rid of the "Add Menu" button?Only you can see that button, its for admins, not regular visitors/registered users. If you want to remove navbar box use this snippet
Forum: Themes and Templates
In reply to: [Customizr] How to add logo to Header.php ( ADD logo no work )To add logo image to custimizr theme you only need to go to yoursite.com/wp-admin/customize.php, tab “Logo & Favicon” and upload your logo images. I also recommend to you to read Customizr documentation for logo.
Forum: Themes and Templates
In reply to: [Customizr] Cant Change my footer.phpEverything is explained in the snippet. You need to copy & paste snippet in the functions.php file of your child theme.
Forum: Themes and Templates
In reply to: [Customizr] Cant Change my footer.phpYou can use this snippet instead changing footer.php