samuelalake
Forum Replies Created
-
Thanks. I’ll consider using the External Importer plugin instead. I wish I knew about this 2 weeks ago when it was created.
Is there a free or beta version or is it only Pro?
I used to have that error too and I figured that it must have something to do with the amount of apache/PHP processes allowed on a server. So it’s most likely related to the hosting platform of the website. The best thing to do is wait for some time, preferably hours,and try again later. That seems to work for me.
@iamahmedq Please do you have any idea why the code is not working for me?
I tried this one:
add_action( 'woocommerce_before_shop_loop_item_title', 'aq_display_brand_before_title' ); function aq_display_brand_before_title(){ global $product; $product_id = $product->get_id(); $brands = wp_get_post_terms( $product_id, 'pwb-brand' ); foreach( $brands as $brand ) echo '<a href="'.get_term_link($brand->term_id).'">'.$brand->name.'</a>'; }Thanks.
- This reply was modified 6 years, 8 months ago by samuelalake.
Forum: Plugins
In reply to: [Tumblr Crosspostr] Tumblr crosspost not connecting.I created a new blog on a different server and it now works. I have no idea what a session.savepath is.
By the way, Is there a function that I can add in my php to check the add to queue box automatically? I’d schedule it on wordpress but I’m scared the free hosting can stop at any time so it’s better to add to queue.
- This reply was modified 8 years, 5 months ago by samuelalake.
It doesnt necessarily need to be RSS. I just need something that can automatically fetch the html file and url of a content so I can pass it to the Recipe Parser. Read https://github.com/onetsp/RecipeParser/blob/master/README.md. What do I do? Will php Curl work?
Thanks for the feedback. I’m planning on using rss feed. Do you think there is any ready made rss php that comes with a plugin menu so I can use submit feed and then pass the content to RecipeParser::parse(). Ive been having a hard time trying to create one myself and I’ve tried using Simplepie.