etrarkia
Forum Replies Created
-
Thanks for answering quickly.
It is not.
It displays content from Product Short Description field only.
When I click at Edit Snippet, I can edit it, but as there are many products, it would took days to do it.
What’s strange is when in Edit Snippet window I enter Custom Field tag that I used in Titles & Meta > Products > Single Product Description, it displays me the right content. Again, I’d have to enter manually into each product and Edit Snippet one by one.
Do you have any suggestion maybe?
Thanks!Forum: Plugins
In reply to: [WooCommerce] Problem with variations and two filesThanks. Please close the topic.
Solved, thanks.
For those who are looking for solution:
1) under /page-templates/ create new template with:
<?php
/*
Template Name: Bios
*/
get_header(); ?>
<div id=”primary” class=”site-content”>
<div id=”content” role=”main”>
<div id=”custom-sidebar”>-
<?php
if ( !function_exists(‘twentytwelve_widgets_init’) || !dynamic_sidebar(‘sidebar-5’) ) :
endif; ?><div style=”clear:both”></div>
</div><?php while ( have_posts() ) : the_post(); ?>
<?php if ( has_post_thumbnail() ) : ?>
<div class=”entry-page-image”>
<?php the_post_thumbnail(); ?>
</div><!– .entry-page-image –>
<?php endif; ?><?php get_template_part( ‘content’, ‘page’ ); ?>
<?php endwhile; // end of the loop. ?>
</div><!– #content –>
</div><!– #primary –>
<?php get_footer(); ?>2) under functions.php add
register_sidebar( array(
‘name’ => __( ‘sidebar-4’, ‘twentytwelve’ ),
‘id’ => ‘sidebar-4’,
‘description’ => __( ‘Submenu’, ‘twentytwelve’ ),
‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
‘after_widget’ => ‘</aside>’,
‘before_title’ => ‘<h3 class=”widget-title”>’,
‘after_title’ => ‘</h3>’,
) );And replace ID, name, Description in functions.php and ID in page template.
Then you should play with CSS and that’s it.Forum: Fixing WordPress
In reply to: How to hide one entry from custom fields?Try with this (page.php):
[Code moderated as per the Forum Rules. The maximum number of lines of code that you can post in these forums is ten lines. Please use the pastebin]
Forum: Fixing WordPress
In reply to: How to hide one entry from custom fields?Solved.
Forum: Networking WordPress
In reply to: 2 domains, 2 different websites (by content), one WPI managed to work all as I imagined.
Since Italian HTML pages were not accessible, we just moved all Italian files from Italian folder into English folder, together with English files and both websites are now accessible again.
Thanks!!!
Forum: Networking WordPress
In reply to: 2 domains, 2 different websites (by content), one WPHm, thanks Ipstenu.
Can you please give me more details about your answer, I’m not sure I can follow you.
Thanks!!!