Diventare Creative
Forum Replies Created
-
Forum: Plugins
In reply to: [Advanced Woo Search] Adding "Search" text to boxScratch that, I didn’t notice there was default “Search” in the box when it was empty. Sorry!
Forum: Plugins
In reply to: [Import and export users and customers] Only Imported 15 usersIt’s hosted at GoDaddy and I have access to shared hosting but not much control. I’ll have to give them a call.
Forum: Plugins
In reply to: [Import and export users and customers] Only Imported 15 usersThanks Javier. I updated the php.ini file to max_execution_time = 600 but still only 15 users are imported. Any other ideas?
It was a problem with my theme and everything is working after I deleted and reinstalled. Thanks for the help Tom, I really appreciate it ??
The only thing I can see is that the waiting in ms seems high at 542ms. I don’t know if that means anything at all.
Thanks for the quick response. I am not seeing any Javascript errors using Google Chrome developer tools.
Forum: Fixing WordPress
In reply to: the_content without thumbnails?Thank yout310s_. My last post did the trick for me. I appreciate your quick response!
Forum: Fixing WordPress
In reply to: the_content without thumbnails?I actually found the solution ??
<?php ob_start(); the_content('Read the full post',true); $postOutput = preg_replace('/<img[^>]+./','', ob_get_contents()); ob_end_clean(); echo $postOutput; ?>
I read this in a post from 2 months ago here
I had to tweak it a little for my needs but it seems to be working great.
Forum: Fixing WordPress
In reply to: the_content without thumbnails?Thanks t31os, that makes sense, but it only uses the custom fields on the homepage. If I take
the_content
out then it will not retrieve the post’s text.Forum: Themes and Templates
In reply to: Use 1 universal image for post?Thanks esmi ??
Forum: Themes and Templates
In reply to: Use 1 universal image for post?My template uses articleimg and thumbnail custom fields. How is it possible to use one image that would be i.e. 500x500px in the articleimg field and 150x150px in the thumbnail field?
Forum: Themes and Templates
In reply to: Modify navbar to link to both pages and categories directlyThanks to you both ?? I did find that the page links to plugin was the easiest solution. Much appreciated!
Forum: Themes and Templates
In reply to: Sidebar slips on archive pagesI’m not seeing where to put the closing div tag… It doesn’t go in the header file as far as I know.
Thanks for the insight Dave ?? These theme does have dropdowns by adding subcategories to the parent. Those do the same as far as structure goes… I will keep looking and see if I can convert to use pages instead…
Have a great day ??
Forum: Themes and Templates
In reply to: How to tell WordPress category page to call specific sidebarI got it! I had to delete the
<?php get_sidebar();
since THAT was the line calling in the default sidebar as well. I was telling it to load twice. Silly me ??