Dave Naylor
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Call to undefined function image_slider_show()I quoted what you’d posted back at you. I’ll strip it even further:
call this function in template file to show slideshow as_tejus_show_slideshow(); OR use this shortcode [as_tejus_slides] in posts or pages.
Forum: Fixing WordPress
In reply to: Slider is not workingWordPress loads jQuery in NoConflict mode, so you need to add your code like this:
<script type="text/javascript"> jQuery(document).ready(function($) { // Your stuff }); </script>Forum: Fixing WordPress
In reply to: Call to undefined function image_slider_show()You should have posted all the above at pastebin.com and provided the link.
If you look at what you posted, you’ll find this:
<div class="wholeform"> <h4> call this function in template file to show slideshow as_tejus_show_slideshow();</h4> <h4>OR use this shortcode [as_tejus_slides] in posts or pages.</h4> </div>Forum: Fixing WordPress
In reply to: Call to undefined function image_slider_show()Did the function name change? Did you install a different slider?
Forum: Fixing WordPress
In reply to: Call to undefined function image_slider_show()Looks like a slider plugin was removed or deactivated but there’s still a reference to it in your theme’s index.php. Open the file in a text editor and remove the reference, or re-install/reactivate the slider.
Forum: Fixing WordPress
In reply to: How Do I Allow Comments Without Requiring E-mail Address?Your theme advises against editing its functions.php file. So install a functionality plugin like this one:
https://wordpress.org/plugins/functionality/
Once installed, enter this function:
function remove_comment_fields($fields) { unset($fields['email']); unset($fields['url']); return $fields; } add_filter('comment_form_default_fields', 'remove_comment_fields');Tested and working on Parabola.
Forum: Fixing WordPress
In reply to: Downscaling Image destroys itDid you regenerate your thumbnails after setting new image sizes. If not, maybe try doing so using something like:
Forum: Fixing WordPress
In reply to: wordpress upgrade problem.You have a file at the root of your WordPress site. It’s called wp-config.php and it contains the name, host, user and password of your database. The details should match the details of the database used for your WordPress site.
Forum: Fixing WordPress
In reply to: WordPress php errorsWhy on earth have you posted a WordPress core file that we all have access to anyway?
Those “errors” you’ve posted aren’t errors at all, they’re notices. They’re telling you that some of plugins are using deprecated code, but nevertheless, for now, still work. Notices shouldn’t really spill out on the front end of a live site anyway, they’re meant for developers and should be turned off in a production environment.
Try disabling those named plugins and see if things improve.
Forum: Fixing WordPress
In reply to: using page editor to add pagesWhich one of the 2,372 themes available here are you using?
Forum: Fixing WordPress
In reply to: wordpress upgrade problem.You need to check the contents of your wp-config.php file and make sure the database details match those of your site.
Forum: Fixing WordPress
In reply to: Visual editor issues after upgrading a Theme forest themeUnfortunately, commercial themes are not supported by these forums since forum volunteers have no access to the source. Your client should have support bundled with their purchase. The theme’s support forums are here:
Forum: Fixing WordPress
In reply to: can't get rid of "LEAVE A REPLY" boxWhen you go to Screen Options, re-check comments. Once done, on the page or post edit screen, scroll down and you can then un-check comments.
Checked screen options merely display the comment options on a post or page edit screen.
Forum: Fixing WordPress
In reply to: An unknown error link to my customize themingIt looks like you’re loading jquery twice. Once from the core WordPress installation and then again from within Starkers. Can you remove the Starkers version?
Forum: Fixing WordPress
In reply to: Moving local website to another local serverIf you have a copy of the directory containing WordPress + themes/plugins etc, then yes, you should be able to eventually recreate the site. You won’t be able to recover any content however unless you have a copy of the associated database.