Forum Replies Created
-
AuthorPosts
-
RiyazParticipant@riyazn
- 17 Topics
- 51 Posts
I guess I have completed the customisation, hope you like it please do check https://riyazmn.com
and thank you so much for such a amazing theme, its so flexible all over, very easy to customise if we get into it little depth, really enjoyed working with mandha theme, thank you
May 22, 2023 at 13:18 #45278RiyazParticipant@riyazn- 17 Topics
- 51 Posts
if anybody looking for single product page customise use this code in functions.php and you will get all freedom like post edit
// enable gutenberg for woocommerce
function activate_gutenberg_product( $can_edit, $post_type ) {
if ( $post_type == ‘product’ ) {
$can_edit = true;
}
return $can_edit;
}
add_filter( ‘use_block_editor_for_post_type’, ‘activate_gutenberg_product’, 10, 2 );// enable taxonomy fields for woocommerce with gutenberg on
function enable_taxonomy_rest( $args ) {
$args[‘show_in_rest’] = true;
return $args;
}
add_filter( ‘woocommerce_taxonomy_args_product_cat’, ‘enable_taxonomy_rest’ );
add_filter( ‘woocommerce_taxonomy_args_product_tag’, ‘enable_taxonomy_rest’ );May 14, 2023 at 18:08 #45232RiyazParticipant@riyazn- 17 Topics
- 51 Posts
I can’t properly make it centre, I need to float everything in centre,
I got some from google but they didn’t work/* Center product summary section */
.single-product div.product div.images,
.single-product div.product div.summary {
margin: 0 auto;
float: none;
}it doesn’t work
Screenshot-2023-05-09-at-7.32.33-PM-1 Screenshot-2023-05-09-at-7.32.33-PM Screenshot-2023-05-09-at-7.33.30-PMMay 9, 2023 at 16:07 #45207RiyazParticipant@riyazn- 17 Topics
- 51 Posts
if someone looking for sale remove badge use this css
/* Add your CSS code here. For example: .example { color: red; } For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp End of comment */ /* Onsale */ .product-summary-wrapper .entry-summary .onsale{ transform:translatex(1175px) translatey(292px); } /* Product title wrapper */ .product-summary-wrapper .entry-summary .product-title-wrapper{ transform:translatex(0px) translatey(-47px); } /* Post Title */ #content .region__container .region__row #primary #main .product .product-summary-wrapper .entry-summary .product-title-wrapper h1{ width:489px !important; } /* Post Title */ .entry-summary .product-title-wrapper h1{ transform:translatex(0px) translatey(0px); } /* Price */ .product-summary-wrapper .entry-summary .price{ transform:translatex(0px) translatey(-12px); } /* Span Tag */ .iconic-woothumbs-all-images-wrap--thumbnails-below .iconic-woothumbs-images-wrap span{ padding-right:15px !important; min-height:38px; transform:translatex(1072px) translatey(318px); }
Happy coding 🙂
May 9, 2023 at 00:05 #45188RiyazParticipant@riyazn- 17 Topics
- 51 Posts
And as I noticed that its not compatible with Wp hide security plugin, if we activate it search tab wont work,
Its not compatible with right click protection plugin, with this in customise it remove woocommerce and additional css optionsMay 4, 2023 at 17:09 #45134RiyazParticipant@riyazn- 17 Topics
- 51 Posts
hi there, I completely checked it, its theme that doesn’t support menu on mobile if we set for dropdown instead of drawer, I checked the mandha theme yours which is on themeforest, even that also doesn’t work if we click on account tab, check screenshoot and fix it soon both cart and account
May 3, 2023 at 21:02 #45121RiyazParticipant@riyazn- 17 Topics
- 51 Posts
aaaah I got it thank you,
I used this on custom css plugin
/* Image */
.iconic-woothumbs-images div img{
transform:translatex(0px) translatey(0px);
border-top-left-radius:13px;
border-top-right-radius:13px;
border-bottom-left-radius:13px;
border-bottom-right-radius:13px;
}/* Division */
.iconic-woothumbs-thumbnails div .iconic-woothumbs-thumbnails__image-wrapper{
border-top-left-radius:13px;
border-top-right-radius:13px;
border-bottom-left-radius:13px;
border-bottom-right-radius:13px;
}May 2, 2023 at 10:16 #45109 -
AuthorPosts