playdiune
Forum Replies Created
-
Hello,
Thanks for the response.The problem was solved with a translatepress plugin update. It seems the problem is your plugin has apply_filters(‘get_the_date’, $date) without the extra parameters.
But now, its all ok.
Thanks
Forum: Plugins
In reply to: [RestroPress - Online Food Ordering System] Taxonomy orderHow did you solved it ?
Thank you ??
Forum: Plugins
In reply to: [RestroPress - Online Food Ordering System] Mobile Lookyes, it is!
You must do some CSS changes for mobile devices ??
@media (max-width: 480px){
do the chages here
{Forum: Plugins
In reply to: [RestroPress - Online Food Ordering System] unexpected items in the cartI beleave that happens when you are changing the screen size on desktop, for example, to test the site on other formats…
If you start and finish in the same screen size, that doenst happen.
In a regular use, that doenst happen.
Am i right?
Forum: Plugins
In reply to: [RestroPress - Online Food Ordering System] Taxonomy orderHello,
I am using Custom Taxonomy Order to order Menu food categories and it works great.
For Food items you can use a trick from another user Barry like this:
we solved this by putting “a” , “b” “c” in front of our food items — the plugin orders alphabetically — then you just use CSS to hide the first character and shift the line to the left:
.rpress_fooditems_list h5.rpress-cat {margin-left: -20px;}
.rpress_fooditems_list h5.rpress-cat::first-letter {color: transparent;}Works great!
- This reply was modified 4 years, 6 months ago by playdiune.
Forum: Plugins
In reply to: [RestroPress - Online Food Ordering System] Error messagesHello,
This error is almost certainly caused by a conflict with another installed plugin. Uninstall all plugins, except RESTROPRESS, and check if the error continues. If not, activate the plugins one by one to check which one is causing the error.
* it smells like a conflict with some image plugin or maybe a speed optimization plugin
All the best
??- This reply was modified 4 years, 6 months ago by playdiune.
Hi,
To roll back use, for example, the plugin WP Rollback
Be nice ??
Hi,
to roll back use, for example, the plugin WP Rollback
All the Best
Forum: Plugins
In reply to: [RestroPress - Online Food Ordering System] Error messagesI think this is the problem:
DevTools failed to load SourceMap: Could not load content for https://richardgyros.rs/wp-content/plugins/restropress/assets/js/maps/theia-sticky-sidebar.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE
Try to remove the bootstrap script on restropress settings and see if that results.
Forum: Plugins
In reply to: [RestroPress - Online Food Ordering System] CurrencyDo not put in the theme functions because those changes will be lost when the theme is updated. Use a child theme or Create a MU Plugin and put those changes there.
- This reply was modified 4 years, 6 months ago by playdiune.
Forum: Plugins
In reply to: [RestroPress - Online Food Ordering System] Menu text size and colorOk, lets try some CSS
FOOD TITLE
.food-title {
/*set the size and color you want*/
font-size: 20px;
color: aquamarine;
}FOOD DESCRIPTION
.rpress_fooditem_inner .rpress_fooditem_excerpt p {
/*set the size and color you want*/
font-size: 12px;
color: #a9a9a9;
}PRICE ITEM
.rpress-price-holder span.price {
/*set the size and color you want*/
font-size: 14px;
color: #ffffff;
}To change “YOUR ORDER” settings
.rpress.item-order h6 {
/*set the size and color you want*/
font-size: 18px;
color: #f1f1f1;
}For MOBILE use the same CSS but inside this:
@media (max-width: 480px){
/*put the same CSS here for small devices*/
}@media (max-width: 980px){
/*put the same CSS here for medium devices*/
}Hope i can help you ??
But i think you shoul start for choosing another color scheme:
Settings -> Styles -> Color Scheme -> choose a lighter themeForum: Plugins
In reply to: [RestroPress - Online Food Ordering System] Add to cart, Mobile ButtonHello,
for that button, try this CSS.rpress-popup-actions .submit-fooditem-button {
background-color: gray;
}*change de color gray, for the color you want ??
- This reply was modified 4 years, 6 months ago by playdiune.
Forum: Plugins
In reply to: [RestroPress - Online Food Ordering System] Add to cart, Mobile ButtonUse this CSS to change de background color
.rpress-submit.button, .rpress-submit.button:visited {
background: #b31d1d !important;
}Use the color you want ??
But, is it normal i cant even see the basic fields?
Thanks