zerojjc
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Primer] Primer/Mins Theme – Featured Image override Hero ImageHello Evan, thank you for the quick reply. It appears I do have the latest updated versions that you mentioned.
Screenshots: https://imgur.com/8ZqzR2F & https://imgur.com/Im3QsCZI also have not edited the functions and don’t believe anyone else has before me. Here is a link to the functions.php code: https://codeshare.io/5zbW6D
Forum: Plugins
In reply to: [WooCommerce] Product Gallery Slider Images are Shifted RightThanks to a member on woocommercecommunity.slack.com I was able to fix the problem. It was with Chrome and I adjusted it with the following CSS code:
figure {
-webkit-margin-start: 0px;
}Forum: Themes and Templates
In reply to: Issue with and child themeWell I found out that SlickNav has a plugin, and that works way better. Thanks anyways.
Forum: Themes and Templates
In reply to: Issue with and child themeI used <?php get_stylesheet_directory_uri(); ?> as Andrew recommended but I am still not getting the css and js to load for SlickNav ??
Forum: Themes and Templates
In reply to: Issue with and child themeThe site build is: https://fallon.3rfocuslabs.com/
What i’m trying to load is the SlickNav, but it is looking for it in the Parent and not the Child template:
<link rel=”stylesheet” href=”<?php bloginfo(‘template_directory’); ?>/slicknav.css”>
<script src=”<?php bloginfo(‘template_directory’); ?>/js/jquery.slicknav.min.js”></script>Thank you for the feedback and support. I’ll see what i can get figured out based on what you found out.
I went ahead and did this and it still isn’t working:-( Here’s a screen showing the setting is checked: https://imgur.com/a/m7Lmf
The page again for reference: https://badgesofamerica.org/charitable-donations/
Hello Matt,
Thank you for your reply. I tried deactivating all of the plugins as you requested (there were only 5 others) but after refreshing the cache the donation total still did not update. I went ahead and uploaded the theme to Dropbox, would that work for you? Here is the link: https://www.dropbox.com/s/732q3u8e1ci3r0k/Triple-Trike.zip?dl=0
(I’ll remove the file/folder in a few days to make this link not active any longer)Hi Vishal,
Yes it was in the latest version of WP. I did not have any plugin adding to the default editor, other than a gallery button, which I use that same gallery on other sites as well. I also found out that it wasn’t happening on all of my pages, only a few, which makes me think it was some transfer error while copy and pasting from a Word doc.
Either way what I did is install the CKEditor plugin and now I don’t have the issue.
Thanks for the reply.
I had the same issue and I discovered my problem was the destination was set to a test url that i had the site on, before moving it to the final server. Here’s where I saw it:
– File upload (edit)
– Destination
– It should be pointing to a URL like this: https://your-website-url/wp-content/uploads/form-maker
After I changed it to the correct URL it began to work fine.Forum: Plugins
In reply to: [Fast Secure Contact Form] Radio Button doesn't show in Google Chrome/* — Radio Button Fix — */
input[type=”checkbox”] { -webkit-appearance: checkbox; }
input[type=”radio”] { -webkit-appearance: radio; }
input[type=”submit”], input[type=”button”] { -webkit-appearance: button; }
select { -webkit-appearance:textfield; }Thank You! I had the same problem and couldn’t figure it out, but this is exactly what I needed.
Forum: Plugins
In reply to: [WooCommerce] Help With Custom Theme WooCommerceI also realized that the WooCommerce css was pulling into the shopping cart and check out pages. But it wasn’t on the category and product pages. I guess what I’d like to know is what I missed or didn’t do correctly when setting the woocommerce plugin up to my custom template? I feel like i missed a step and needed to do more than just create the woocommerce.php file?
Forum: Plugins
In reply to: [WooCommerce] Help With Custom Theme WooCommerceSo I did finally manage to get it looking good by adding CSS to my style.css file. The problem I was having was I had no woocommerce styles to edit and when I would check the “Inspect Element” option in Firefox nothing would come up, so it was as if the woocommerce didn’t have any styles. So I found a site that had done something similar and was able to see all of the CSS they used, which I then copied, pasted, and edited in my style.css file. This took me a while and if anyone on here happens to know what I could’ve done differently to begin with (regarding there being no preset woocommerce styles attached to these pages) that would be greatly appreciated, so that I know for next time.