Pyrate.Ned
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comments turned off but still receiving new commentsThat is not really the point… I can go find some plugins on my own. The point was the default wordpress settings for comments do not work.
The comment spam bots access the comment scripts directly.
I want to know why this problem has been around forever and wordpress has yet to fixed it. It is flat out broken if I have it checked someone need to be logged in to comment and bot/people can still comment not logged. I shouldn’t need to go get a third party plugin, wordpress should fix it or take the options which do not work out.
Forum: Fixing WordPress
In reply to: Homepage slider stopped workingwhat happed to your site it says coming soon?
Forum: Fixing WordPress
In reply to: Homepage slider stopped workingDid you A. delete the Beta folder or B. move the scripts that were in the Beta folder
Forum: Fixing WordPress
In reply to: Homepage slider stopped workingYou have errors, take a look at all these. Some of this stuff is pointing to your beta folder
GET https://joeljuhtakajj.com/wp-content/themes/beta/js/jquery.thumbnailScroller.css 404 (Not Found) joeljuhtakajj.com/:25
GET https://joeljuhtakajj.com/wp-content/themes/beta/js/app.js 404 (Not Found) (index):100
GET https://joeljuhtakajj.com/js/jquery.isotope.min.js 404 (Not Found) (index):631
GET https://joeljuhtakajj.com/wp-content/themes/beta/img/nav-bg.png 404 (Not Found) (index):631
GET https://joeljuhtakajj.com/wp-content/themes/beta/img/progress.gif 404 (Not Found) shadowbox.js:8
Uncaught TypeError: Object [object Object] has no method ‘touchCarousel’ (index):134
Uncaught ReferenceError: initialize is not defined (index):213
Uncaught TypeError: Property ‘undefined’ of object #<Object> is not a functionForum: Fixing WordPress
In reply to: Drop down menu problem againI’m getting a javascript error from jd.gallery_1_2_4_4.js “JonDesign’s SmoothGallery v2.1beta1.” at line 177.
Forum: Fixing WordPress
In reply to: Drop down menu problem againTohocasu my code will not work as you are using some javascript to open and close your dropdown items
Forum: Fixing WordPress
In reply to: Drop down menu problem againAndrew is right and your submenu links are showing, they are just in the wrong place.
Try something link this in the css
#navcontainer #nav li { position:relative; } #navcontainer #nav li #sub-menu { position:absolute; top:39px; left:0px; display:none; } #navcontainer #nav li:hover #sub-menu { display:block; }
Forum: Fixing WordPress
In reply to: $10000 mistake?? Please help!A few quick questions
1. Did you move all the files from old server to the new server?
2. Did you make a new database and import over the tables?
3. Did you change the site url
4. Did you change the wp-config.php on either site.
5. Is old site still workingForum: Fixing WordPress
In reply to: WordPress not showing database contentWell I was just asking if they matched, not to make them match, I hope you saved or have the information of the new site config file. As you will need to point to that database.
First step I would take is login into phpmyadmin for the old site and export your database, make your export/dump can drop and create tables, I believe it is a check box option in phpmyadmin when exporting a database. Then login into you wordpress on your old site and change the site url to the new url. And now repeat the export the database step. Keep the first one as a back up. Open the second with a text editor and do a find and replace for https://www.olddomain.com and replace it with https://www.newdomain.com
Then login to the phpmyadmin for the new site and copy all text for the second exported file and drop it in to the textarea under the sql tap and hit go. Then in your wp-config file on the new site add all the correct information to the new database.
Forum: Fixing WordPress
In reply to: WordPress not showing database contentcheck the wp-config file on both sites, do they match?
Forum: Fixing WordPress
In reply to: WordPress not showing database contentSo you have two databases? You say you created the database and go through the install.
Forum: Fixing WordPress
In reply to: copied site to a new server – font size is largerI don’t think that fixed all your problems, as the code I show up there and the images on the home page are not the same size.
Forum: Fixing WordPress
In reply to: copied site to a new server – font size is largerlook on this page https://cchca.stevelescure.net/ch-garden-club/beauty-spots/ and https://www.cchca.org/testwp/ch-garden-club/beauty-spots/ compare the h1’s
<h1 class="post-title"> <span class="cufon cufon-canvas" style="width: 92px; height: 22px;"> <canvas width="113" height="30" style="width: 113px; height: 30px; top: -6px; left: -3px;"></canvas> <span class="cufon-alt">Beauty </span> </span> <span class="cufon cufon-canvas" style="width: 64px; height: 22px;"> <canvas width="85" height="30" style="width: 85px; height: 30px; top: -6px; left: -3px;"></canvas> <span class="cufon-alt">Spot </span> </span> <span class="cufon cufon-canvas" style="width: 32px; height: 22px;"> <canvas width="52" height="30" style="width: 52px; height: 30px; top: -6px; left: -3px;"></canvas> <span class="cufon-alt">of </span> </span> <span class="cufon cufon-canvas" style="width: 47px; height: 22px;"> <canvas width="67" height="30" style="width: 67px; height: 30px; top: -6px; left: -3px;"></canvas> <span class="cufon-alt">the </span> </span> <span class="cufon cufon-canvas" style="width: 73px; height: 22px;"> <canvas width="87" height="30" style="width: 87px; height: 30px; top: -6px; left: -3px;"></canvas> <span class="cufon-alt">Month</span> </span> </h1>
and
<h1 class="post-title">Beauty Spot of the Month</h1>
Forum: Fixing WordPress
In reply to: Creating a dropdown in menu that lists authorsYeah your right, yeah my brain wasn’t working that night… to late.
It looks like exclude_admin only works if the admin’s login user name is admin. Is the admin’s name admin?
Forum: Fixing WordPress
In reply to: Creating a dropdown in menu that lists authorsAnd by defualt “exclude_admin” is set to 1 which is true meaning it excludes the admin. You are setting it to 0 with make the statement false so it will not exclude the admin.