questionsolutions
Forum Replies Created
-
@gabrielberzescu Thank you very much. I did end up figuring it out, for anyone else that might come across this, here is what I did using python.
You need to use the custom_fields and it’s set up as a dictionary. So an example would look like this. The slugs are found inside the WCK plugin for the ones you created.
my_blog = Client('https://myblog.com/xmlrpc.php','Username','Password') myposts=my_blog.call(posts.GetPosts()) post.custom_fields = [{ 'key': 'slug_1', 'value': 'This is what you want to put inside the section' }, { 'key':'slug_2', 'value': 'this is where you put another thing' }, { 'key': 'slug_3', 'value': 'this is where you put another thing' }, post.id = my_blog.call(posts.NewPost(post)) post.post_status = 'publish' my_blog.call(posts.EditPost(post.id, post)
Good luck!
- This reply was modified 4 years, 11 months ago by questionsolutions.
Forum: Plugins
In reply to: [WP-KaTeX] Over head arrowNever mind, you can use the \vec{x} to get the same result.
Forum: Themes and Templates
In reply to: [Customizr] Woocommerce Page LayoutHi Bensita,
Yes, I did. Thank you.
Forum: Themes and Templates
In reply to: [Customizr] Woocommerce Page LayoutHi Bensita,
I looked through, unfortunately, I can’t seem to find anything relating to the number of columns.
Thanks though!
Forum: Themes and Templates
In reply to: [Customizr] Woocommerce Page LayoutSo I added
.woocommerce ul.products li { width: auto !important; margin:auto; }
and
.woocommerce div.product div.images img { width: auto; margin: left;}
To my custom css section, now the problem I have is that only two columns appear on the shop page. As seen here: https://www.aliquamecards.com/shop/
I would like to have 3 or 4, any help would be highly appreciated.