Ruchit Shah
Forum Replies Created
-
Hi @vishalvp
To restrict file upload option to specific product you need to add below code in your theme functions.php file or Code Snippets plugin.
add_filter( 'wau_include_product_ids', 'wau_include_only_product', 10, 1 ); function wau_include_only_product( $pids ) { return array( 310, 315 ); // Add the product ID's here in the array. }
I hope that helps you.
Regards,
Ruchit.Forum: Themes and Templates
In reply to: [Twenty Twenty-One] Remove Empty SpaceIf you want the black bar and only remove date and category use following CSS:
.posted-by { display: none; } .post-taxonomies { display: none; }
Regards,
RuchitForum: Themes and Templates
In reply to: [Twenty Twenty-One] Remove Empty SpaceHi @deezywonder,
Try disabling date and category with following CSS:
footer.entry-footer.default-max-width { display: none!important; }
Regards,
RuchitForum: Themes and Templates
In reply to: [Twenty Twenty-One] Remove Empty SpaceHi @deezywonder,
You can remove empty space with following CSS:
aside.widget-area { margin-top: -100px; }
I hope this helps you.
Regards,
RuchitForum: Plugins
In reply to: [File Uploads Addon for WooCommerce] Upload only in one productHi @gutinovich,
Thank you for using our plugin.
It seems that you have not inserted product id in proper place.
You correct code will be as follows:
add_filter( 'wau_include_product_ids', 'wau_include_only_product', 10, 1 ); function wau_include_only_product( $pids ) { return array( 1512 ); // Add the product ID's here in the array. }
Please let us know if you still face any issues.
Regards,
RuchitForum: Themes and Templates
In reply to: [Twenty Twenty] I can’t resize the logo,Hi @michael132
You can try to resize the logo using following CSS:
img.custom-logo { max-height: 400px; }
I hope this code helps you. Do let me know how the code works.
Regards,
RuchitHi @greatpics2020 ,
We have a setting here : https://prnt.sc/ubirvm
After enabling addon settings you will have an option to upload image on product page as shown in screenshot: https://prnt.sc/ubitrh
If you are having any other problem/query you can create a ticket here: https://imaginatesolutions.freshdesk.com/support/tickets/new
Regards,
RuchitForum: Themes and Templates
In reply to: [Twenty Twenty] Menu bar font sizeHi @scriks
To increase the font size of menu bar please add following CSS as follows:
li a { font-size: 20px; }
Regards,
RuchitForum: Themes and Templates
In reply to: [Twenty Twenty] Font for Prices ChartCan you please mark this ticket as resolved?
Forum: Themes and Templates
In reply to: [Twenty Twenty] Font for Prices ChartHi @scriks
To change font you can add following CSS as follows:
.wp-block-coblocks-pricing-table-item { font-family: sans-serif; } ul.wp-block-coblocks-pricing-table-item__features li { font-family: sans-serif; } .wp-block-button a { font-family: sans-serif; }
I hope these code helps you.
Regards,
Ruchit.Forum: Themes and Templates
In reply to: [Twenty Seventeen] Site Title & TaglineHi @deanimal
You can try adding following CSS as follows:
site-branding { opacity: 0.8; background-color: white; width: 380px!important; height: 200px!important; margin-left: 35%; margin-bottom: 150px!important; }
Note: You can change margins ,height, width as per you requirements.
I hope this code helps you. Do let me know how the code works.
Regards,
RuchitForum: Themes and Templates
In reply to: [Twenty Twenty] Change menu fontHey @scriks
You need to add Font-weight property to bold menu items. You can add following code:li a { font-family: Arial, Helvetica, sans-serif; font-weight:600 }
This will help you resolve your query.
Regards,
RuchitForum: Themes and Templates
In reply to: [Twenty Twenty] Change menu fontHi @scriks
You can use the following CSS as follows:li a { font-family: Arial, Helvetica, sans-serif; }
Do let me know how the code works.
Regards,
RuchitHi @eenger
To change all link color to black apply following CSS:a { text-decoration: none!important; color: black!important; }
To get color on hover on all links apply CSS mentioned below:
a:hover { color:lime!important; }
To change hover color for particular link use class (Below class is for post link)
.wp-block-coblocks-service__content a:hover { color: red!important; }
Regards,
Ruchit