ehoanshelt
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Frustrated!!!Hey KB_star,
Is this when you try to go to yourdomain.com/wp-admin/install.php? Is that the page you are trying to get to where you get a 404 error?
Forum: Fixing WordPress
In reply to: Remove homepage sidebar but keep admn loginYou can remove it by going to your widget screen and deleting it. If you want to login, then go to domain.com/wp-admin/ and login.
Forum: Fixing WordPress
In reply to: Comments off but people still commentingCheck your pages. Even though you turned off commenting, some pages might nav commenting turned on which overwrites the setting. Look under you pages discussion settings.
Forum: Fixing WordPress
In reply to: Function not attaching to wp_footer hookTried that also. I’m just going to go another approach at this and do it via a separate footer ??
Forum: Fixing WordPress
In reply to: Function not attaching to wp_footer hookI added that and no dice.
This is the template page:
https://pastebin.com/jtURRup5This is the footer.php:
https://pastebin.com/f1NJXPnkAnd the function:
https://pastebin.com/7TsG9388I think this will help more
Forum: Fixing WordPress
In reply to: Function not attaching to wp_footer hookI tried that also but to no avail.
This was the code I tried:
//if ( is_page_template('template-thankyou.php') ) { function eh_add_product_tracking_code(){ global $post; $meta_key = 'product_code'; $meta_value = get_post_meta($post->ID, $meta_key, true); if ($meta_value = ''){ $meta_value = "This is Blank!"; }else{ return $meta_value; } } add_action('wp_footer', 'eh_add_product_tracking_code'); //}
Forum: Fixing WordPress
In reply to: Function not attaching to wp_footer hookHere is the page i’m working on
Forum: Fixing WordPress
In reply to: Function not attaching to wp_footer hookHey Birgire,
No, I have the wp_footer(); in the footer.php file. My other function are working fine that are attached to it.
Forum: Fixing WordPress
In reply to: Function not attaching to wp_footer hookHey ??
Yes it doesForum: Fixing WordPress
In reply to: Index php won't load the data baseAlso, if you have a URL to the error. that would be amazing!
Forum: Fixing WordPress
In reply to: How to add a button which navigates to another wordpress site?Hey Xlief33,
You may want to look into this for translating your pages.
https://codex.www.ads-software.com/I18n_for_WordPress_Developers
Other then that, if you have a site that is in a different language and you would like to put it in the sidebar, this is how you would do it.
- Create the image
- Upload image to WordPress site
- Add a text widget to your sidebar by going to Appearance > Widget on your dashboard
- Add this code to your text widget
<a href="URL TO TRANSLATED SITE"><img src="URL TO YOUR IMAGE YOU UPLOADS IN STEP 2" /></a>
That should be about it.
Forum: Fixing WordPress
In reply to: W3 validation errorHey stomas30,
Looks like your <select> tag is missing options.
This is an element that requires a child element. Here is an example:
<select>
<option value=”volvo”>Volvo</option>
<option value=”saab”>Saab</option>
<option value=”mercedes”>Mercedes</option>
<option value=”audi”>Audi</option>
</select>Forum: Localhost Installs
In reply to: MAMP install issueDouble check if you are using the correct credentials. If so, then reset password ans see if that helps. If that doesn’t do it, then go to your wp_users table and reset your password manually.
Forum: Fixing WordPress
In reply to: does not show static homepageWhat failed about your settings? Did it not save or is it just not setting the home page.
Provide alittle more detail please on the static home page setting ??
Forum: Fixing WordPress
In reply to: Cannot log in to Dashboard due to site URL changeHey Crepusculae,
Your https://defye.com/wordpress/ site is looking good right now. Everything looks like it is linking up.
For the wp-admin error, leave off .php. That is not a file. Go to https://defye.com/wordpress/wp-admin/. That came up fine on my machine.