shortcode

slimisworkin
9 Posts
slimisworkin posted this 18 January 2019
Ask a Question

Hi

I am having issues making the shortcode for many plugins work.

Specifically, woo commerce. I know I can not edit woocommerce directly but I do need to be able to add working shortcodes

Hi I am having issues making the shortcode for many plugins work. Specifically, woo commerce. I know I can not edit woocommerce directly but I do need to be able to add working shortcodes
Vote to pay developers attention to this features or issue.
30 Replies
Order By: Standard | Newest
John Smith
21 Posts
John Smith posted this 22 December 2020

Actually I have a problem with just what you're saying. I do know what to do with shortcodes. I added a shortcode by clicking the PLUS SIGN on top >POSITION AND SHORTCODE > SHORTCODE and nothing worked. I tried various ways and couldnt get it to work. It should be simple and work but it didnt.

Its for a FORM made with a paid 123formBuilder.com account. I eventually had to add an HMTL block and change the code to make it work. Very frustrating and unnecessary since your shortcode control should have worked from the beginning.

It would be great to know what the issue is so next time I can do do it the way its supposed to work.

Thanks

**See attachments

Thank you. You're post helped save me a crap tun of time. You were right.

> Actually I have a problem with just what you're saying. I do know what to do with shortcodes. I added a shortcode by clicking the PLUS SIGN on top >POSITION AND SHORTCODE > SHORTCODE and nothing worked. I tried various ways and couldnt get it to work. It should be simple and work but it didnt. > > Its for a FORM made with a paid 123formBuilder.com account. I eventually had to add an HMTL block and change the code to make it work. Very frustrating and unnecessary since your shortcode control should have worked from the beginning. > > It would be great to know what the issue is so next time I can do do it the way its supposed to work. > > Thanks > > **See attachments Thank you. You're post helped save me a crap tun of time. You were right.
Support Team
Support Team posted this 15 May 2020

Hi,

The attached file contains complete page HTML. It is quite difficult to understand anything this way. But CSS cannot change the page layout. You can visually move it, but this will cause problems with responsive modes.
In any case, this question is not related to Nicepage because it does not control the output of the Woocommerce shortcodes and does not provide styles.

...................................................
Sincerely,
Olivia
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hi, The attached file contains complete page HTML. It is quite difficult to understand anything this way. But CSS cannot change the page layout. You can visually move it, but this will cause problems with responsive modes. In any case, this question is not related to Nicepage because it does not control the output of the Woocommerce shortcodes and does not provide styles. ................................................... Sincerely, Olivia Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
Stefano Putzu
11 Posts
Stefano Putzu posted this 14 May 2020

I attach the file.

is it possible to insert a css so that it can become as attached?

I attach the file. is it possible to insert a css so that it can become as attached?

Last edited 14 May 2020 by Stefano Putzu

Stefano Putzu
11 Posts
Stefano Putzu posted this 14 May 2020

Using the google chrome developer tools function, I tried to change the page settings, they managed to get the updated result by modifying the code in this way:

Using the google chrome developer tools function, I tried to change the page settings, they managed to get the updated result by modifying the code in this way:
Support Team
Support Team posted this 14 May 2020

Hi,

The location depends on the woocommerce that generated the product layout. In this specific case, it creates something like two columns and the list is located on the second column. You cannot move the list to the left column with the CSS only.

...................................................
Sincerely,
Olivia
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hi, The location depends on the woocommerce that generated the product layout. In this specific case, it creates something like two columns and the list is located on the second column. You cannot move the list to the left column with the CSS only. ................................................... Sincerely, Olivia Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
Stefano Putzu
11 Posts
Stefano Putzu posted this 14 May 2020

My question always referred to the woocommerce shortcode,
a week ago I asked you how I could align the color variant icons horizontally because they were displayed vertically,
you sent me the following CSS to insert:
ul.variable-items-wrapper.image-variable-wrapper
{
list-style: none;
}

.variable-item: not (.radio-variable-item) {
     display: inline-block;
     margin: 5px;
}

that worked, my question now is this:
the icons have been aligned horizontally but they are positioned only on the right side,
is there a way, by modifying the css in question to place the icons under the main image and see them horizontally along the entire width of the page?

I insert the link to the page for verification: https://www.professione-casa.com/t-comfort-1/

My question always referred to the woocommerce shortcode, a week ago I asked you how I could align the color variant icons horizontally because they were displayed vertically, you sent me the following CSS to insert: ul.variable-items-wrapper.image-variable-wrapper { list-style: none; } .variable-item: not (.radio-variable-item) {      display: inline-block;      margin: 5px; } that worked, my question now is this: the icons have been aligned horizontally but they are positioned only on the right side, is there a way, by modifying the css in question to place the icons under the main image and see them horizontally along the entire width of the page? I insert the link to the page for verification: https://www.professione-casa.com/t-comfort-1/
Support Team
Support Team posted this 12 May 2020

Richard,

Try setting css in custom

image.png

image2.png

...................................................
Sincerely,

Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Richard, Try setting css in custom !image.png! !image2.png! ................................................... Sincerely, Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
Stefano Putzu
11 Posts
Stefano Putzu posted this 10 May 2020

is it possible to modify the inserted css to align the color icons below the image in the whole width of the page?

ul.variable-items-wrapper.image-variable-wrapper
{
list-style: none;
}

.variable-item:not(.radio-variable-item) {
    display: inline-block;
    margin: 5px;
}

All custom CSS can be added under the Site Settings >> CSS in the Nicepage Desktop application.
Please let us know if you need our further assistance.

is it possible to modify the inserted css to align the color icons below the image in the whole width of the page? > ul.variable-items-wrapper.image-variable-wrapper > { > list-style: none; > } > > .variable-item:not(.radio-variable-item) { > display: inline-block; > margin: 5px; > } > > All custom CSS can be added under the Site Settings >> CSS in the Nicepage Desktop application. > Please let us know if you need our further assistance. >

Last edited 12 May 2020 by Stefano Putzu

Stefano Putzu
11 Posts
Stefano Putzu posted this 09 May 2020

I solved, just click on the "svuota" button and everything started working again

I solved, just click on the "svuota" button and everything started working again
Stefano Putzu
11 Posts
Stefano Putzu posted this 08 May 2020

hi, this morning another problem arose always on the same page.
in desktop, notebook and tablet mode it is no longer possible to click on the colors to change the product image, while in the horizontal and vertical smartphone version it works.
I don't understand what has changed, it worked yesterday.

hi, this morning another problem arose always on the same page. in desktop, notebook and tablet mode it is no longer possible to click on the colors to change the product image, while in the horizontal and vertical smartphone version it works. I don't understand what has changed, it worked yesterday.
Support Team
Support Team posted this 08 May 2020

Hi,

You are welcome. Feel free to contact us on any occasion.

...................................................
Sincerely,
Hella
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hi, You are welcome. Feel free to contact us on any occasion. ................................................... Sincerely, Hella Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
Stefano Putzu
11 Posts
Stefano Putzu posted this 07 May 2020

it works perfectly!
Thank you very much!

it works perfectly! Thank you very much!
Support Team
Support Team posted this 07 May 2020

Hi Richard,

Please try the following code:

ul.variable-items-wrapper.image-variable-wrapper
{
list-style: none;
}

.variable-item:not(.radio-variable-item) {
    display: inline-block;
    margin: 5px;
}

All custom CSS can be added under the Site Settings >> CSS in the Nicepage Desktop application.
Please let us know if you need our further assistance.

...................................................
Sincerely,
Olivia
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hi Richard, Please try the following code: ul.variable-items-wrapper.image-variable-wrapper { list-style: none; } .variable-item:not(.radio-variable-item) { display: inline-block; margin: 5px; } All custom CSS can be added under the Site Settings >> CSS in the Nicepage Desktop application. Please let us know if you need our further assistance. ................................................... Sincerely, Olivia Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
Stefano Putzu
11 Posts
Stefano Putzu posted this 07 May 2020

of course https://www.professione-casa.com/t-comfort-1/

of course https://www.professione-casa.com/t-comfort-1/
Support Team
Support Team posted this 06 May 2020

Hi,

Nicepage theme does not provide any additional styles for woocommerce or woocommerce controls. Therefore this list uses default list styles. It looks like the component does not provide additional styles for shortcodes too. We can provide you with a small CSS workaround if you provide us with the link to the page that demonstrates the issue.

...................................................
Sincerely,
Olivia
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hi, Nicepage theme does not provide any additional styles for woocommerce or woocommerce controls. Therefore this list uses default list styles. It looks like the component does not provide additional styles for shortcodes too. We can provide you with a small CSS workaround if you provide us with the link to the page that demonstrates the issue. ................................................... Sincerely, Olivia Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
Stefano Putzu
11 Posts
Stefano Putzu posted this 06 May 2020

Hello,
I have a similar problem,
I inserted a shortcode of the woocommerce product page, using the shortcode content, when I view the page,
the color variant icons are displayed vertically instead of horizontally as on the original woocommerce product page.
how can I solve this problem?

Hello, I have a similar problem, I inserted a shortcode of the woocommerce product page, using the shortcode content, when I view the page, the color variant icons are displayed vertically instead of horizontally as on the original woocommerce product page. how can I solve this problem?
Support Team
Support Team posted this 14 March 2019

Hi King,

We already answered you in your private topic about this. Usually, we respond within 1-2 business.
In 90% shortcodes work ok in the Shortcodes control. For example, woocommerce shortcodes. But the rest 10% shortcodes may have problems. It looks like your form plugin is one of them. Our developers will investigate this issue, and we'll let you know the result.

...................................................
Sincerely,
Olivia
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hi King, We already answered you in your private topic about this. Usually, we respond within 1-2 business. In 90% shortcodes work ok in the Shortcodes control. For example, woocommerce shortcodes. But the rest 10% shortcodes may have problems. It looks like your form plugin is one of them. Our developers will investigate this issue, and we'll let you know the result. ................................................... Sincerely, Olivia Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
king
8 Posts
king posted this 14 March 2019

You didnt answer here and you didn't there either. Why not just tell me ?

I also never got notification about this message ! I cant seem to get any shortcode to work. Perhaps im just doing some wrong/ not doing all the proper steps ?! Your instructions are very vague.

Also, I figured perhaps someone else would answer as this is a FORUM and anyone can answer q question or maybe someone else has the same issue. So there's nothing wrong with listing a question in 2 places until I get a correct answer/ solution.

You actually spent time to write a response but didnt even answer the question- so isnt that a complete waste of my time ? It gets very frustrating when your product does not work (or Im not doing all the correct steps to make it work) and I cant seem to get you guys to repsond

Hi,

You have the separate case regarding the issue with the shortcode and we are communicating with you in that case. Please respond to that ticket so we could investigate it further.

..Hella,
..................................................
Sincerely,
Hella
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

You didnt answer here and you didn't there either. Why not just tell me ? I also never got notification about this message ! I cant seem to get any shortcode to work. Perhaps im just doing some wrong/ not doing all the proper steps ?! Your instructions are very vague. Also, I figured perhaps someone else would answer as this is a FORUM and anyone can answer q question or maybe someone else has the same issue. So there's nothing wrong with listing a question in 2 places until I get a correct answer/ solution. You actually spent time to write a response but didnt even answer the question- so isnt that a complete waste of my time ? It gets very frustrating when your product does not work (or Im not doing all the correct steps to make it work) and I cant seem to get you guys to repsond > Hi, > > You have the separate case regarding the issue with the shortcode and we are communicating with you in that case. Please respond to that ticket so we could investigate it further. > > ..Hella, .................................................. > Sincerely, > Hella > Nicepage Support Team > > Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 > Follow us on Facebook: http://facebook.com/nicepageapp
king
8 Posts
king posted this 13 March 2019

Hella,

You didnt answer here and you didn't there either. Why not just tell me ?

I also never got notification about this message ! I cant seem to get any shortcode to work. Perhaps im just doing some wrong/ not doing all the proper steps ?! Your instructions are very vague.

Also, I figured perhaps someone else would answer as this is a FORUM and anyone can answer q question or maybe someone else has the same issue. So there's nothing wrong with listing a question in 2 places until I get a correct answer/ solution.

You actually spent time to write a response but didnt even answer the question- so isnt that a complete waste of my time ? It gets very frustrating when your product does not work (or Im not doing all the correct steps to make it work) and I cant seem to get you guys to repsond.

Hella, You didnt answer here and you didn't there either. Why not just tell me ? I also never got notification about this message ! I cant seem to get any shortcode to work. Perhaps im just doing some wrong/ not doing all the proper steps ?! Your instructions are very vague. Also, I figured perhaps someone else would answer as this is a FORUM and anyone can answer q question or maybe someone else has the same issue. So there's nothing wrong with listing a question in 2 places until I get a correct answer/ solution. You actually spent time to write a response but didnt even answer the question- so isnt that a complete waste of my time ? It gets very frustrating when your product does not work (or Im not doing all the correct steps to make it work) and I cant seem to get you guys to repsond.

Last edited 14 March 2019 by king

Support Team
Support Team posted this 12 March 2019

Hi,

You have the separate case regarding the issue with the shortcode and we are communicating with you in that case. Please respond to that ticket so we could investigate it further.

...................................................
Sincerely,
Hella
Nicepage Support Team

Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1
Follow us on Facebook: http://facebook.com/nicepageapp

Hi, You have the separate case regarding the issue with the shortcode and we are communicating with you in that case. Please respond to that ticket so we could investigate it further. ................................................... Sincerely, Hella Nicepage Support Team Please subscribe to our YouTube channel: http://youtube.com/nicepage?sub_confirmation=1 Follow us on Facebook: http://facebook.com/nicepageapp
You must log in or register to leave comments