canah
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [SKT White] Remove nav arrows on sliderPlease leave url to your website. Thanks in advance!
Forum: Themes and Templates
In reply to: White space between rowsPlease, replace previously css code to this:
#pl-144 .panel-grid-cell .so-panel:last-child { display: inline-block; margin-bottom: 0; }
Now all should works fine.
Forum: Themes and Templates
In reply to: White space between rowsPlease add to your custome css this code:
#pg-144-0, #pg-144-1, #pg-144-2, #pl-144 .panel-grid-cell .so-panel { margin-bottom: 0 !important; }
Forum: Plugins
In reply to: WooCommerce -> how to display min price option nameI use this code to display minimum price and there, where you see “Value (option name)” I would like to put information about weight (which of weights this minimum price concerns)
add_filter('woocommerce_variable_price_html', 'custom_variation_price', 10, 2); function custom_variation_price( $price, $product ) { $price = ''; if ( !$product->min_variation_price || $product->min_variation_price !== $product->max_variation_price ) $price .= '<span class="from">' . _x('', 'min_price', 'woocommerce') . ' </span>'; $price .= woocommerce_price($product->get_price_including_tax()) .'<span class="from"> Value (option name) </span>'; return $price; }
Forum: Themes and Templates
In reply to: [Moesia] Questions about welcom Screen and Full width page.Zmaster, you should edit your css styles to change this option. Please, go to the general catalogue of your theme, open the style.css file, find 1386 line and replace this:
.has-banner, .overlay {
overflow: hidden;
width: 100%;
}on this:
.has-banner, .overlay {
max-height: 640px !important;
overflow: hidden;
width: 100%;
}It’s not recomended, but works quite fine.
Forum: Themes and Templates
In reply to: [Moesia] Reduce Menu HeightYes, sure! Please find style.css in general catalogue of your theme, edit this file and change the padding values at 122 line for this option: .main-navigation li. Read more about padding using google.
Forum: Themes and Templates
In reply to: [Moesia] Fonts problemHi Vladff,
Thank you so much for your reply. Actually I solved this problem adding fonts to header section, but it’s not recommended solution. ??
Forum: Themes and Templates
In reply to: [Moesia] slider instead of static imagePlease, install some slider plugin, which uses shortcode and then go to theme’s customizer, select header image and check option “hide”. Next, edit your homepage and using page builder tab click on add row. When you’ll finish, click on add widget and choose “text widget”, then put your slider shortcode and save. That’s all.
Forum: Fixing WordPress
In reply to: How to display page navigation for big gallery attachment page?Try to use this plugin: Paginated G
Forum: Plugins
In reply to: [Meteor Slides] where to add the codeHi,
If you want to use this plugin as widget, you should add your code at the place, where is in your theme widget section. It means for example left or right column, sidebar.
<?php if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow(); } ?>
But if you wanna use this plugin at your post – inside article, you should use this code and add to your content at editor:
[meteor_slideshow]
Forum: Fixing WordPress
In reply to: Automatic Redirection issuesHmm.. I’m not sure if it’s a good solution, but try to force redirect using this instruction.
Forum: Fixing WordPress
In reply to: How to hide/disableHello,
If you know php and html, you should edit your theme, but if not, please follow to below instruction:
1. Go to your admin panel and themes section. From dropdown menu choose editor and at new page find on the right column the file called style.css
2. Click on the file and inside editor go to the last line.
3. Copy and paste this code, then save.
.entry-title .category {display: none;}
4. Go to your page and refresh browser.
Forum: Fixing WordPress
In reply to: Automatic Redirection issuesHi,
Please check this out – here you are described similar problem.
Ok, I hope this will solve your problem. Good luck and keep in touch. ??
Forum: Fixing WordPress
In reply to: lenght words in home pageOk, so you can use substr in php to limit the characters, if it solves your problem.
<>php $page_id = 43; $page_data = get_page( $page_id ); $content = $page_data->post_content; echo "<div id='name'>"; echo substr( $content, 0, 100); echo "</div>"; ?>
This line describes your limit and instead 100 you can use any value:
echo substr( $content, 0, 100);