acub
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Change Post page backgroundYou have a small error in your CSS, and it is creating an unwanted horizontal scroll bar.
On line 78 of your style.css you need to replace
.row-fluid .span3 { width: 102%; }with:
.row-fluid .brand.span3 { width: 100%;}And, while you’re there, you might want to put this in for your page backgrounds, see if you like it better:
.blog .container > .row, .page-id-29 .container > .row, .page-id-27 .container > .row, .page-id-31 .container > .row { background-color: rgba(255,255,255,.85); padding: 20px 0; border-radius: 12px; }Forum: Themes and Templates
In reply to: [Customizr] Sidebars no longer appear afert updatingI’m talking about the page template that you select from #pageparentdiv. If you don’t see #pageparentdiv open Screen Options and select “Page Attributes”. You selected a template called “Custom Page Example”. Initially i thought you copied it from you theme before the update, made some mods you forgot about. And now it’s not updated to the new file structure…
But actually, I just tested the template in my installation and it’s obsolete. It hasn’t been updated to the new file structure, hence, your error. Just use default page template and you get your sidebars back.
@nikeo: that custom-page.php needs an update. Others will have this problem too.
Forum: Themes and Templates
In reply to: [Customizr] Sidebars no longer appear afert updatingWhen you created the custom template for this page, you modified index.php from an older version to build it, but you need to use index.php from 3.0.10 or later. Until than, select default page layout and you’ll have the sidebars back.
Forum: Themes and Templates
In reply to: [Customizr] frontpage image optionsSaveongolf, let me see if I understood what you want. You selected a static page as your frontpage and want to add some images in the content and you want the same bubble effect on them without linking anywhere?
If so, you need to put<div class="thumb-wrapper "><a class="round-div" href="#" onclick="return false;"></a>before the <img /> tags and
</div>after it. They will have the bubble effect and not link anywhere. For pagination, you’ll need to wrap all the images inside a .row and use .span# and .offset# classes. See Boostrap documentation.
Forum: Themes and Templates
In reply to: [Customizr] why no search bar@rdellconsulting: Please add that search method to the snippets.
@nikeo: please add it in the FAQ among first: How to search theme’s forum for keywords
This has the potential to highly reduce the number of questions that have already been answered.
Forum: Themes and Templates
In reply to: [Customizr] Change Post page backgroundBody tag holds classes that allow you to target specific pages, templates, taxonomies, search results, archives, etc.
Replace .blog with body.page-id-XX and it will apply to the background of page with the id of XX.Forum: Themes and Templates
In reply to: [Customizr] Unable to access admin panelAppending __ in front of your child theme folder means renaming you child theme folder from “something” to “__something”.
Log in through ftp to your website, go to /wp-content/themes/ and rename that folder. Alternatively, you could use a file browser app from cPanel.
Whatever you use to upload files on your server is good enough for this task.
Forum: Themes and Templates
In reply to: [Customizr] Hiding "Category Archives"@wpyogi: yeah, the terrorists. Well, upon taking this freezing decision for the finished websites I did increase the security measures.
So far no site was broken. But until I took that decision a lot of them broke due to updates. And it took a lot of my time.
I acknowledge the risks, I do set backup systems for all websites, just in case, and overall, I’m very happy with my decision.
Forum: Themes and Templates
In reply to: [Customizr] Hiding "Category Archives"Back in the days I struggled with functions. Than came Adminimize, which was great, and I used it a lot, but a bit time-consuming. Sometimes I created new roles for the client admins that would control all that was available without breaking the website.
But now there are plugins to do only that: disable all updates.Forum: Themes and Templates
In reply to: [Customizr] Hiding "Category Archives"I always freeze and hide all updates before turning the websites over. Am I the only one to do so? I have WP based websites running without updates for more than 4 years now and people are quite happy with them.
Why would you even let them know there are updates to a fully functional final product if those updates have the risk of breaking it down, as they wouldn’t know how to deal with the potential errors?
Forum: Themes and Templates
In reply to: [Customizr] Unable to access admin panelUse ftp access to rename your child theme folder. Append __ in front of it, for example.
You’ll be able to go to dashboard and change the theme. If changing theme to the parent will give you the same error, rename Customizr’s folder too. Download Customizr again and re-upload it.
That should fix it.
Forum: Themes and Templates
In reply to: [Customizr] Display full posts on front page, not excerptsCustom CSS panel:
.fp-text-one, .fp-text-two, .fp-text-three {display: none;}You should have asked this question on a separate thread, so others could find it and benefit from the answer.
Forum: Themes and Templates
In reply to: [Customizr] Collapsed navigation not workingNo. Your menu’s working fine for me. Opens up when shrunk, reverts when page is wide again. Try a different browser.
Forum: Themes and Templates
In reply to: [Customizr] front page versus home page versus index pageNormally none of the code I posted above has anything to do with being logged in, besides the tester_function(), which checks if the user to be logged in and with admin rights and only echoes that info if the condition is true. By the way, check if that if is closed.
From what you write there’s something wrong (some open function) somewhere in your code. This problem needs to be addressed, as it will affect your website.
If it’s not the tester function, you should:
- reinstall Customizr clean
- check if your child theme is properly installed (compare header of style.css to the one in the example @ FAQ on Customizr website)
- rename (append __ in front of all files you copied and moded from Customizr to child theme) and see if any of them stops the odd redirects
- disable plugins one by one
and… I’m all out of ideas.
And you should also check which piece of code redirects you (the one in the child theme or the one in the parent theme). The one in the parent theme should have been deleted right after testing. It was only intended to see if wp_safe_redirect() works or not on your server.
Forum: Themes and Templates
In reply to: [Customizr] Collapsed navigation not workingIt gets shrunk too, into an orange button. Try pressing it.