Ryan Zook
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Lucienne] Author Box WidgetI would recommend removing the WP Author Box plugin. That plugin appears to be outdated, and it will also require more style changes to be consistent with the Lucienne theme.
Instead, follow the instructions at https://ww.wp.xz.cn/support/topic/author-box-16/#post-10209585 to add a custom HTML widget with some markup. You will have to edit the markup with your own image, information, and social links, but I think that will be easier than customizing an author box widget from a plugin.
Forum: Themes and Templates
In reply to: [Lucienne] Author BoxWould you add a link to your site so I can review how your HTML appears in the widget? I suspect the image source was not linked correctly. Or you can use the ‘code’ tag in the forum editor to paste your HTML here.
Forum: Themes and Templates
In reply to: [Lucienne] Carousel not movingTry clearing your browser cache and viewing the site again. With the updated JS, I’m seeing the carousel auto-play on your site in Chrome, Firefox, and Edge.
Forum: Themes and Templates
In reply to: [Lucienne] Carousel not movingIt appears you fixed your problem, as the carousel on your site is advancing automatically now. Do you need further help?
Forum: Themes and Templates
In reply to: [Lucienne] Carousel not movingThe carousel is loading correctly on your site and will advance when the slide selector is used (below the Continue Reading link), but it is not set to auto-play.
Did you follow the instructions for editing the owl.carousel.js file here?
https://ww.wp.xz.cn/support/topic/owl-carousel-3/#post-11150247Forum: Themes and Templates
In reply to: [Lucienne] Owl CarouselYour carousel can be advanced, but it doesn’t automatically advance. Is that what you’re trying to accomplish?
The only way I’ve found is to edit the owl.carousel.js file at /lucienne/js/owl.carousel.js, line 1470 (v1.3.3) to be as follows:
autoPlay: true, stopOnHover: true,Any edits to the core theme files will be overwritten if you do an automatic theme update, so backup your changes.
Forum: Themes and Templates
In reply to: [Lucienne] Full Page – No SideBar ErrorThe latest version is 0.0.6, available from https://downloads.wp.xz.cn/theme/lucienne.0.0.6.zip. If you go to Appearance > Themes, you should be alerted there is an update for your Lucienne theme.
However, be aware that later versions remove the Author box widget, and you’ll have to create your own Author Box. The theme’s support forum has some information about how to do that.
Forum: Themes and Templates
In reply to: [Lucienne] Full Page – No SideBar ErrorAha, you are using version 0.0.1 of the theme. That version has an incorrect title for the WooCommerce page template, so it overrides the No Sidebars template.
In Appearance > Editor, find woocommerce.php under Theme Files on the right-hand pane. It will probably be titled No Sidebars Page Template (woocommerce.php). Click to open it, and on line 3, rename it as follows:
* Template Name: WooCommerceClick to Update File, and go to Pages > Sample Page Sidebar, and change its template as described above.
Forum: Themes and Templates
In reply to: [Lucienne] Alignment of the grid + language + InstagramThe grid is messy, agreed. You can help keep the grid tidy by editing the “Excerpt” on each post so they are a standard length. The theme just grabs the first number of characters, about 150. Also, adding featured images with a standard width and height in pixels will help.
That Continue Reading and Previous/next text is written into the theme. You can replace them here (your theme version may have different line numbers):
lucienne\template-parts\carousel.php, line 27
lucienne\single.php, line 20Instagram wasn’t included in the author widget for the initial release of Lucienne, and the author widget was dropped for all releases after 0.0.1. It would take some custom development. You could follow the recommendations here:
https://ww.wp.xz.cn/support/topic/author-box-16/#post-10209585If you do add an HTML widget with that HTML markup, the line to add for Instagram is as follows:
<li><a href="#insert_link_to_instagram_profile"><i class="fa fa-instagram"></i></a></li>Forum: Themes and Templates
In reply to: [Lucienne] social iconDid you resolve this issue? If not, would you post a link to a site where you’re having the issue? It’s possible the theme’s CSS is overwriting the Menu Icon plugin’s formatting.
Forum: Themes and Templates
In reply to: [Lucienne] Carousel not appearing on web previewUnder Settings > Reading, is the setting for Your homepage displays have ‘Your latest posts’ radio button selected?
Have you resolved this issue? It looks like you may have chosen another theme.
Forum: Themes and Templates
In reply to: [Lucienne] Carousel Post PreviewYou have several paths to the same end. The easiest is not necessarily the best.
Easiest: Add these lines of CSS to the Customizer > Additional CSS:
.slider-info {
display: none !important
}
#slider .item {
height: 520px !important
}Worst: Edit the theme’s \template-parts\carousel.php file. Remove the section in lines 16-25.
<div class="slider-info"> <h3><a href="<?php the_permalink(); ?>"><?php the_title();?></a></h3> <div class="entry-cat"> <?php the_category( ', ' ) ?> </div><!-- .entry-cat --> <div class="slider-excerpt"><?php the_excerpt(); ?></div> <div class="entry-datetop"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php echo get_the_date( get_option('date_format') ); ?></a> </div> <?php get_template_part( 'sharing' ); ?> </div>Best: Create a child theme, and save a customized version of carousel.php in your child theme folder.
Forum: Themes and Templates
In reply to: [Lucienne] Full Page – No SideBar ErrorThe theme is functioning as designed. There are three templates for pages: Default, No Sidebars, and WooCommerce. If you apply the WooCommerce template, it will require the WooCommerce plugin, and show any WooCommerce products you have created (none, currently). Try changing to the No Sidebars template instead of WooCommerce under Page Attributes > Template.
Forum: Themes and Templates
In reply to: [Lucienne] Home page on demoA text widget was added to the Homepage Top widget area. See Appearance > Widgets on your site to view the Homepage Top widget area and add a text widget.
Forum: Themes and Templates
In reply to: [Lucienne] Owl CarouselThis issue was resolved by adding the following CSS to the theme Customizer:
@media screen and (max-width: 800px)
#slider {
display: none !important;
}