Forum replies created
On the second screen, which you attached; you have button “Rescan” – use it.
Ok, I hope, that he will decide implement this feature 🙂
Thank you for your answer Denzel.
Could you tell me is it possible, that in next version of plugin, you will add this possibility to insert phone number?
I also have one more question.
Now, when I click on the icon ex. Paypal, Skype, I’m transferred to new page. How to change it. I want to, that after click on Skype icon will be displayed the number/name person on Skype (this data, which was introduced).
The text color you can change using CSS code:
.woocommerce-message {
color: #7E56BF !important;
}
You can change the background color and font color of stock using this code:
.product .count {
color: #EEE;
background: transparent;
}
To disable displaying the stock use this code:
.product .count {
display: none;
}
Ok, but how to do this? Copy folder “languages” from alora to alora-child folder?
Please copied below code and check whether it is effect which you wanted to achieve.
.widget-content {
margin: 0px !important;
padding: 0px !important;
border: 0px !important;
}
.widget-one-column {
padding-right: 0px !important;
padding-left: 0px !important;
}
It is very complicated, because in the first version in both files (woo-config.php and PL.po) was “woocommerce”. Of course in “.po” file, this two sentences was translated, but it doesn’t work. I decided to change it. When I replaced woocommerce by alora in both files, it started work, but when I tried do the same in Child Theme “woo-config.php” file, it turned out that it not work.
Why?
Try to use this:
.t4p-blog-medium .entry-meta-details {
margin: 0px !important;
}
Try to use this:
.t4p-blog-medium .entry-meta {
margin: 0 !important;
padding: 0 !important;
}
.t4p-blog-medium .post {
margin-bottom: 0px !important;
padding-bottom: 0px !important;
}
Thank you Roman,
I will check it.