turiyamoore
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Child Theme styles loading before Parent stylesMark,
The child does not have an @import line.
I tried your code, but with it I see these in this order in source code:parent-theme-css (shows parent style.css)
child-theme-css (shows child theme style.css)
main-styles-css (shows parent style.css)I’m thinking this theme is written in an odd way?
See it here: https://www.psycotropix.com/duh!
<div>See Schedule…</div>Forum: Fixing WordPress
In reply to: WordPress adding -2 at the end of the urlThanks ClaytonJames!
So simple! It worked perfectly.
Forum: Fixing WordPress
In reply to: WordPress adding -2 at the end of the urlI have a site where -2 is being added to certain pages. These are not numerical pagenames. But they are the same names I had on the site I used as a template. I didn’t duplicate the pages, but I had the menu’s installed when I made the new site.
Somewhere in the background it thinks I have duplicate pages, but I don’t.
Can someone tell me where page names live in the databases?
thanks
Hello Niaz,
I’m trying to get your shopping cart to work with Nextgen. What I want is to have the “add to cart” button info show in description area of each photo. I think I need a shortcode for each individual product and the variations (size) that go with it.
I’m using paypal standard.
Is this possible?
thanks for your help!
Forum: Plugins
In reply to: [CataBlog] Alt tags for seo?I really appreciate your effort to help me. Thanks!
This is what I used for the template (for anyone else wanting some control over the alt tag). The phrase I need is in there, but it also uses the title so the individual names are present too. This gives me an accurate description, as well as better SEO for my images.
<div class="catablog-row catablog-gallery"> <a href="%LINK%" class="catablog-image" rel="nobox" %LINK-TARGET% %LINK-REL%> <img src="%IMAGE-THUMBNAIL%" alt="meditation bench %TITLE%" /> <strong class="catablog-title">%TITLE%</strong> </a> <div class="catablog-description">%DESCRIPTION%</div> </div>
Forum: Plugins
In reply to: [CataBlog] Alt tags for seo?the thing is I have the titles showing on mouse-over for thumbs and what i need in alt= won’t work in the title that displays.
https://www.joyiswithinyou.com/store/meditation-benches/
I need the alt tags to say meditation-bench but displaying it on every one as a title doesn’t work.
Forum: Plugins
In reply to: [CataBlog] Alt tags for seo?hmmm, i’m not sure what to do with this, but will give it a shot. I wish I caught the fact that this plugin doesn’t support alt data before integrating it.
Forum: Plugins
In reply to: [CataBlog] How to use my own Lightbox?macguru2000, Thanks. Is there another lightbox plugin you are familiar with, so you can help me make this work?
thanks! Any tips at all would help.
Forum: Plugins
In reply to: [CataBlog] How to use my own Lightbox?gallery template.
Forum: Plugins
In reply to: [CataBlog] How to use my own Lightbox?Hi.
If I disable the lightbox in Catablog, I am successful with using WP Lightbox 2 plugin, but I don’t know how to get the description info in Catablog items to show in that case.
On this page each item has a description and a buy button.
https://www.joyiswithinyou.com/store/meditation-benches/Can this render in the other lightbox? I’m using the Gallery view.
thanks.
Forum: Themes and Templates
In reply to: [Twenty Twelve] [Theme: Twenty Twelve] Footer WidgetsHey thanks for explaining. I understand now.
Forum: Themes and Templates
In reply to: [Twenty Twelve] [Theme: Twenty Twelve] Footer WidgetsZeaks,
Thanks a ton for the code posted above to create the footer widgets.
It all works great. I have one question though.
This line is in the .css snippet:
@media screen and (min-width: 600px) {And there seems to be a loose curly bracket a few lines below it also.
From this page https://pastebin.com/jQHRzr8RAre these intended? To me something seems wrong, but I just don’t know enough.
Thanks!
Forum: Fixing WordPress
In reply to: need help with including ie.css in twentytwelve childthemeI used the below code for my child’s functions.php and it works. For some reason I could not get the import url to work in ie.css in the site root or in css folder of child.
My question. Using the below code. Do I need to run a full copy of ie.css in the child, or just my modifications?
Sorry. I know it’s right in front of my face here. but if anyone can help me understand this code or point me to a noob friendly reference for php that would be great.
`// remove ie css from twentytwelve theme
function mytheme_dequeue_styles() {
wp_dequeue_style( ‘twentytwelve-ie’ );
}
add_action( ‘wp_enqueue_scripts’, ‘mytheme_dequeue_styles’, 11 );
//add new from child theme
wp_enqueue_style( ‘mytheme-ie’, get_stylesheet_directory_uri() . ‘/css/ie.css’, array( ‘twentytwelve-style’ ), ‘1.0’ );
$wp_styles->add_data( ‘mytheme-ie’, ‘conditional’, ‘lt IE 9’ );`Forum: Fixing WordPress
In reply to: How to move MENU below HEADER image in Twenty Twelve themeInteresting.
I copied that chunk of css from the parent and only changed text align to left and messed with the borders. the line with !important was already there, and I just left it there.
Here is the original section from twenty twelve:
.main-navigation ul.nav-menu, .main-navigation div.nav-menu > ul { border-bottom: 1px solid #ededed; border-top: 1px solid #ededed; display: inline-block !important; text-align: left; width: 100%; }
I still don’t have a good idea how these things work. But taking it out of the child fixed it.
I have the habit of bringing a chunk of css into my child style and just making minor changes, thinking that the lines I don’t change don’t hurt to be there. Is that not true? Can they alter functions of the parent by being in the child in the same form as the original?
I really appreciate your help and the wordpress forums!
Thanks!