amoon
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't access dashboardhave you checked in phpmyadmin what the siteurl is in the wp_options table?
I downloaded the file directly and looked through the code and it didnt contain the base64 encoded redirect, so anyone have any ideas on how installing a plugin from the wordpress site coudl do that?
I installed this plugin from the add plugin function from the wordpress repository on our site and it installed the base64 encoded redirect to the config.php file.
Here is the fix – jQuery is a lot easier than I expected!
Add this to the events.js file
right under
$(this).find("td:gt(3)").addClass("tec-right");Add This
// add a class to each day of the week $('td').addClass(function() { return 'day-' + $(this).index();Add some styling to events.css
This displays a Sorry Were Closed Sign on the days we are closed (Sundays & Mondays and hides the links)
//Hides Links and Says Closed for Mondays
.day-0 a { display:none;}
.day-0 { background: url(“/tlca-media/closed-sign.jpg”) no-repeat scroll 10px 27px transparent;}
//Hides Links and Says Closed for Sundays
.day-6 a { display:none;}
.day-6 { background: url(“/tlca-media/closed-sign.jpg”) no-repeat scroll 10px 27px transparent;}[Please post code snippets between backticks or use the code button.]
I have it working for Sundays but cant get Mondays to work at all. Using the code that works for Sundays puts a closed sign on every day of the week.
I managed to display a closed sign on Sundays by adding the following to the events.js in resources:
Under this
$(this).find(“td:gt(3)”).addClass(“tec-right”);:I added this:
$(this).find(“td:gt(5)”).addClass(“tec-sunhide”);Then in the css file i added:
.tec-sunhide a {display:none;}
.tec-sunhide {background: url(“/images/closed-sign.jpg”) no-repeat scroll 10px 27px transparent;}Forum: Fixing WordPress
In reply to: Proceed To Confirmation not workingDid you fix this? I am having the same issue. Clicking proceed to confirmation just reloads the page.