Aikyrie
Forum Replies Created
-
Forum: Hacks
In reply to: Using Multiple Taxonomy Query in WP_QueryIt was a no go. Thank you for trying though!
Forum: Fixing WordPress
In reply to: 500 Internal Server Error on Interior PagesYes we have but they said it was resulting from a WordPress update issue but that definitely isn’t the case since all our other sites are working just fine and it only occurred this morning.
We host with InMotion hosting.
Forum: Fixing WordPress
In reply to: 500 Internal Server Error on Interior PagesThis is my htaccess:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /blog/
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /blog/index.php [L]
</IfModule>
# END WordPressForum: Fixing WordPress
In reply to: CSS is not showing for everyoneThank you everyone! This is all very helpful!
Forum: Fixing WordPress
In reply to: CSS is not showing for everyonetravelocity.com/blog
Forum: Fixing WordPress
In reply to: CSS is not showing for everyoneForum: Fixing WordPress
In reply to: Display During Certain Day and TimeI was able to do it with the following:
<?php $c_time = mktime(); $open = strtotime('Saturday 1pm'); $close = strtotime('Saturday 8pm'); if ($c_time > $open && $c_time < $close) { ?> CONTENT HERE <?php } ?>
[Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]
Forum: Fixing WordPress
In reply to: Refused to execute a JavaScript script.Sorry, I thought the issue might be WP core specific since it was an error with wp-admin/admin.php.
Thanks anyways
Forum: Fixing WordPress
In reply to: Refused to execute a JavaScript script.Themeforest. It’s called Website: themes.kubasto.com/website/
Forum: Fixing WordPress
In reply to: Site Doesn't Work for Some UsersYes. haha I meant to list that as well.
They told me it was probably a WordPress specific issue and that the DNS setup was perfectly fine.
There aren’t but I reinstalled the new update and it seemed to be working fine now. Thank you!
Forum: Fixing WordPress
In reply to: Protected Page Not Workinghttps://www.johnsonlawgroup.com/?page_id=2594
Still a no go.
Forum: Fixing WordPress
In reply to: Protected Page Not Workinghttps://johnsonlawgroup.com/forms/
password: password!Forum: Fixing WordPress
In reply to: Protected Page Not WorkingYes to all. It still wont display the content.
Forum: Hacks
In reply to: WordPress User Registration with HubSpot Formslol I’m sorry Adrian.
I know how to do it, but the problem is getting the user registered in WordPress while submitting the submission to Salesforce. BOTH require a unique input name.
For example, if I want to register the user in WordPress my input would have to be:
<input name=”user_name” />If I want the information to go to Salesforce, it would have to be:
<input name=”Sfdc_user_name_c” />I can’t have both, it has to be one or the other.