Susa38 on "[Plugin: All-in-One Event Calendar] Custom MySQL query?"
Hello Sharon I'm looking for a way to get something similar. I would like to show the events with one tag on the homepage with a custom design. I found the solution on github but I can't get to show...
View ArticleSharon Murphy on "[Plugin: All-in-One Event Calendar] Custom MySQL query?"
First, make sure you have support for featured images turned on in your theme. Check your functions.php file to see if this line is in there: add_theme_support( 'post-thumbnails' ); See this link for...
View Articlesnowboarderjrw on "Backup Restore issue"
I'm trying to take the files from a previous database and import them into the new data base, I've done this and here's what I end up with with the ybbl being the files I want and the cffn being the...
View Articlecatacaustic on "Backup Restore issue"
What's set for $table_prefix in your wp-config.php file? That's what tells WordPress which set if tables to use. You should be able to set that to the correct prefix and the site will use the correct...
View Articletaela87 on "100-150 MySQL Queries per page?"
Hi, I'm running a site on shared hosting, which I'm thinking of upgrading to VPS, but my host recommends that I fix the speed issues before I decide if I need to upgrade. I have abnormally slow loading...
View Articlecit on "[Plugin: WooCommerce] in which mysql table user id and order id tied...
Hi. new Question. Where in Mysql i can find tables category id tied with product id
View ArticleMike Jolley on "[Plugin: WooCommerce] in which mysql table user id and order...
cit, I suggest you read up on the Schema WordPress uses for posts. Products are a type of post.
View ArticleSusa38 on "[Plugin: All-in-One Event Calendar] Custom MySQL query?"
Thanks Sharon I have worked with your solution but it does not work for me. I have on my functions file on the theme support for featured images and I work with it on my diferent templates but I think...
View ArticleSharon Murphy on "[Plugin: All-in-One Event Calendar] Custom MySQL query?"
Can you supply an example of where this is, in action? Do you have a sample page? Can you supply the code for the complete template file?
View ArticleSusa38 on "[Plugin: All-in-One Event Calendar] Custom MySQL query?"
Sorry but i'm working it on local mode But this is the way: I create a file named ai1ec-sample-usage.php and I insert it on my theme folder on this file I insert this code: <?php // inicio funcion...
View ArticleSharon Murphy on "[Plugin: All-in-One Event Calendar] Custom MySQL query?"
In the page template, I would think you would be able to use the thumbnail snippet of code I gave you previously. It will need to be inside a standard WP Loop though, I think. Sorry I can't be of much...
View ArticleSharon Murphy on "[Plugin: All-in-One Event Calendar] Custom MySQL query?"
Wait, see if this will work: Set the post ID to $post_id inside your function. Then, use this: <?php echo get_the_post_thumbnail($post_id, 'single-post-thumbnail'); ?>
View ArticleSusa38 on "[Plugin: All-in-One Event Calendar] Custom MySQL query?"
Thanks Sharon I'm working with your solution but I do not get nothing yet. you say "Set the post ID to $post_id inside your function" I'm not sure where I have to make that. I continue trrying with...
View ArticleSharon Murphy on "[Plugin: All-in-One Event Calendar] Custom MySQL query?"
If I read the AI1EC Event properties correctly, you should be able to do this: $post_id = $instance->get('post')->post_id; See if that works.
View ArticleSusa38 on "[Plugin: All-in-One Event Calendar] Custom MySQL query?"
if I insert $post_id = $instance->get('post')->post_id; and after I insert get_the_post_thumbnail($post_id, 'single-post-thumbnail'); it does not show nothing if I insert $post_id to print the...
View ArticleSharon Murphy on "[Plugin: All-in-One Event Calendar] Custom MySQL query?"
Did you try: echo get_the_post_thumbnail($post_id, 'single-post-thumbnail'); Or did you try: get_the_post_thumbnail($post_id, 'single-post-thumbnail'); They will behave differently. If you tried both,...
View Articletaela87 on "100-150 MySQL Queries per page?"
Short version. The problem was HTTP/HTTPS redirects. The solution. I'm upgrading to a VPS and going to fix the redirecting.
View ArticleSamValiant on "Staging site redirects to main site"
Hey all, So I have quite a big wordpress site running woocommerce. I decided that I needed a staging site now that my theme isn't being updated. However now that I've done the following I'm getting an...
View ArticleSamValiant on "Staging site redirects to main site"
Note a note to say that I have Woocommerce installed if that makes any difference.
View Article