finkdb
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Broken Blog pages show at mostI followed all of the directions to the letter and I’m still having the same issue. The weird thing is, it’s only the main blog page that is having the issue. If I go to page 2 or higher of the blog, it shows the correct # of posts.
Forum: Fixing WordPress
In reply to: Broken Blog pages show at mostOk. I’ll try that later this week. I’ll let you know how it goes. Thank you.
Forum: Fixing WordPress
In reply to: Broken Blog pages show at most4.9.8
Forum: Fixing WordPress
In reply to: Broken Blog pages show at mostI’m not sure. I have no idea how long this functionality has been broken.
Forum: Plugins
In reply to: [Conditional Shipping for WooCommerce] Doesn’t work with WooCommerce ServicesI am running WooCommerce 3.2.6 and I have three shipping methods (Flat Rate, First Class, and Media Mail). I am attempting to put a condition on the Media Mail which displays it only if books are exclusively in the cart.
Forum: Plugins
In reply to: [WooCommerce] BreadcrumbsYes, the .breadcrumb is created by the theme. I’m attempting to simply change the .woocommerce-breadcrumb to look like the .breadcrumb by changing the woocommerce.css file. For some reason though, my customized woocommerce.css file is not being loaded. That seems to be my main issue here.
Forum: Plugins
In reply to: [WooCommerce] BreadcrumbsEvidently, the customized woocommerce.css file I have in my child theme is not being loaded. I checked the source of the website and the default WooCommerce css files are being loaded before my child theme style.css. I have the following code in the style.css which references my customized woocommerce.css file.
@import url(“woocommerce.css”);
I have the woocommerce.css file at the root level of my child theme. Am I doing something incorrectly?
Forum: Plugins
In reply to: [WooCommerce] BreadcrumbsI see that they are being generated by two different things. I don’t have any plugins that would modify the breadcrumbs. I’ve tried to modify the woocommerce.css file to try and make it look like the theme breadcrumbs, but it isn’t accepting the css change for some reason.
Forum: Plugins
In reply to: [WooCommerce] BreadcrumbsThe URL with the Shop breadcrumbs are here: https://encouragedinheart.org/wordpress-dev/shop-test-2/ . This is the test site for the live site. If you click anywhere else within the site, outside of the shop area, you will see the breadcrumbs functioning correctly.
Forum: Plugins
In reply to: [WooCommerce] BreadcrumbsMy bad. I think there is a conflict with my theme. I need some help here. The theme breadcrumbs work correctly except for the “shop” (i.e., woocommerce pages). The shop breadcrumbs function correctly but look differently than the rest of the breadcrumbs throughout the site. I tried updating the woocommerce.css file but, for some reason, it will accept some of the new formatting, but not all of it. For example, I’m trying to change the a color from #777 to #b70052. I’ve commented out the color: #777 line and inserted a replacement one but it won’t accept it and update the color. The deliminator is also different. I believe the default one in woocommerce is >> but the “shop” pages are showing /.
In order to accomplish this I used the plugin Social Sharing Toolkit. I modified the Shortcode tab to show the buttons I wanted. Then to display the social buttons on the individual product, I inserted the following code inside of the plugins/woocommerce/templates/content-single-product.php file.
echo do_shortcode(‘[social_share/]’);
I inserted the code on Line 50, immediately under the do_action( ‘woocommerce_single_product_summary’ ); line.
This solution is only good as long as it isn’t overwritten during a plugin update. To avoid this, use a child Theme. Create a woocommerce folder under your child theme’s main directory and copy the edited content-single-product.php file there.
Take the raw code for functions.php and paste it in your theme’s functions.php file. Make sure you scroll down and get all of the code when you copy it. I don’t understand your statement, “I get the code at the head of my page as well as across the top of wp admin”. What code are you seeing? It may be better for us to take this off of this board. Please email me directly at [ redacted, support is offered via the forum and not email ]
It looks like you are still linked to the Compact and not the Extend format. When you copied mvandemar’s code for functions.php and album-lightbox.php, did you grab the RAW code? If not, do that. The additional function in the functions.php file should not have crashed your site. Also, are you trying to display an album with multiple galleries or just a single gallery?
@marali – No, I changed the album-lightbox.php file.
I think I figured it out.
Change mvandemar’s album-lightbox.php file to reflect the following changes.
1) Change Line 22: replace ngg-album-compact with ngg-album
2) Change Line 23: replace ngg-album-compactbox with ngg-albumThis worked for me. Now I have an album in extended view that displays a thumbnail of each gallery. When each thumbnail is clicked, the respective gallery opens in Lightbox.