jhippie
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Showing Months without EventsHow about setting up an event in calendar with just an asterisk or something or a simple message that repeats once per month. I know it’s not a coding solution, but I just added a few “placeholders” like holidays etc.
This helped me…
It was a little quirky, but it worked.
David,
Sorry I forgot I posted this. In the meantime I posted for help on the customizr theme forum. Turned out it was NOT your plugin….an issue with a PHP snippet for another customization with an error…
BTW, I think your plugin looks great and when I need a chart for the next site, will be back to buy.
Thanks for responding.
You can mark this resolved.Forum: Themes and Templates
In reply to: [Customizr] eliminate right margin – did I break flexbox?they don’t have a logo yet…but everything is good
thanks for the reply
changing from the original snippet to the acub code (with a change to the hook as noted above) worked for meForum: Themes and Templates
In reply to: [Customizr] eliminate right margin – did I break flexbox?they don’t have a logo yet…but everything else is good
thanks for the reply – the acub code with a change to the hook worked for meForum: Themes and Templates
In reply to: [Customizr] eliminate right margin – did I break flexbox?In case anyone else uses the acub code from here and uses a site title (text) instead of a logo, I found his notes that led me to a solution to center the title:
As of 3.0.14 the hook for logo changed from “tc_logo_title_display” to “tc_logo_img_display” if you have a logo and “tc_logo_text_display” if it uses the site title (you don’t have a logo).
I just updated the snippet to work for 3.0.14. Thank for pointing this out.
Thanks to acub for providing the code to solve my problem.
Forum: Themes and Templates
In reply to: [Customizr] eliminate right margin – did I break flexbox?Forum: Themes and Templates
In reply to: [Customizr] eliminate right margin – did I break flexbox?https://wordpress.org/support/topic/logo-to-be-set-ontop-of-the-menu-both-centered?replies=7
I think this is my same issue…
Forum: Themes and Templates
In reply to: [Customizr] eliminate right margin – did I break flexbox?OK, I know it is not the plugin. It is something I put in the child theme. After deactivating the plugin, I switched themes back to the standard customizr theme and the margin goes away. I then reactivated the plugin with the original theme and everything is fine, too.
Unfortunately, the centered header items, additional site-description lines and some style things (font color, size, etc.) also go away. Can anyone take a look at this and give me another pointer?Forum: Themes and Templates
In reply to: [Customizr] eliminate right margin – did I break flexbox?Well I deactivated the plugin without a positive result. Still have the excess margin. Anyone else have any ideas? I’m back to the unknown again. Can’t get rid of that right hand margin.
It’s not just cosmetic, it really messes up mobile devices, because they shift around inside the screen.Forum: Themes and Templates
In reply to: [Customizr] eliminate right margin – did I break flexbox?OH NO! Looks like you are right on base! I completely overlooked the fact that I am using a plugin I’m not familiar with for tables.
Just dinked around with adding some custom css on the tables page and it fixed that page – but not the others. I’m assuming it’s a plugin problem. Don’t really know why adding custom css to the page with table page options would fix that page…
‘.span7 {
width: 670px !important;
}
.span8 {
width: 770px !important;
}
.span12 {
width: 1170px !important;
}’
Actually, I don’t really know why the css from a plugin should impact the theme…but looks like it. Guess I’ll bite the bullet and deactivate the plugin to be sure.
Thank you so much. I couldn’t see the forest for the trees! I truly appreciate your response. Guess I need to find a new tables plugin 🙁 Really liked this one – looked good and was responsive.Forum: Themes and Templates
In reply to: [Customizr] eliminate right margin – did I break flexbox?The other dicey thing about this is the menu items actually appear off center as well. It looks as though that line is actually centering on the whole page (margin included) whereas the title and site description look centered on the page (without the margin included).
Forum: Themes and Templates
In reply to: [Customizr] Tagline to be a link?You can only have the luxury of being a purist when you know what you are doing :]
For me – when I ask for so much help – I must say:
It works, therefore it is…
I’m the only one who will see it and I don’t know enough to be offended!Thank you again for the assistance and a smile
Forum: Themes and Templates
In reply to: [Customizr] Tagline to be a link?Success! Thank you again for your assistance with this… and for the ongoing updates, support and development on customizr.
Great theme!
Great support!Forum: Themes and Templates
In reply to: [Customizr] Tagline to be a link?Thank you for your response. I’m sorry for not understanding the snippet. It is probably clear to more experienced bloggers.
This is what I tested in the validator after it failed:
add_filter( 'tc_tagline_display' , 'my_link_in_tagline'); function my_link_in_tagline() { global $wp_current_filter; ?> <?php if ( !in_array( '__navbar' , $wp_current_filter ) ) :?> <div class="container outside"> <h2 class="site-description"> <?php bloginfo( 'description' ); ?> <a href="[PUT YOUR URL HERE]" title="[A TITLE]">My link</a> </h2> </div> <?php else : //when hooked on __navbar ?> <h2 class="span7 inside site-description"> <?php bloginfo( 'description' ); ?> <a href="[PUT YOUR URL HERE]" title="[A TITLE]">My link</a> </h2> <?php endif; ?> <?php }It is that last } you thought I missed, right?
Sorry, I must be misunderstanding something. Would you please show me exactly where in this code would I put
<a href="tel:123-123-1234">123-123-1234</a>
My current tag line is just a phone number, no wording. It appears at top of page. I just want it to be hotlinked for phones. I just want a mobile phone to be able to one click dial. No need for any title or wording like call me.
Thank you for your time and assistance. The customizr theme looks so good on mobile devices. This is the one item I’m struggling with for phones.