epicdevspace
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Problem with ImagesHi
Please post a link to your site.
Forum: Fixing WordPress
In reply to: Erasing edit's history – possible?See this post
All the best!
Forum: Hacks
In reply to: keep nav menu at the top when scrollingHi there
Add this to your child theme’s custom.css
.site-header { padding-left: 40px; padding-right: 40px; position: fixed; width: 100%; z-index: 9999 !important; }Might need a bit of tweaking 🙂
All the best!
Forum: Fixing WordPress
In reply to: Execute shortcode in response to a buttonHi
In your child theme’s header.php
<script> function execute_mcode() { var url="<?php echo get_template_directory_uri(); ?>/yourshortcode.php"; jQuery.post(url,function(data){ console.log(data); }); } </script>In your yourshortcode.php:
<?php echo do_shortcode('[optinform]'); ?>and use the following in your button:
onclick="execute_mcode()"All the best!
Forum: Fixing WordPress
In reply to: Static Front Page Will Not LoadHi
Double check your permalinks as per @contentiskey’s suggestion.
You might also want to contact your host / ensure that all is well in your .htaccess.
All the best!
Forum: Fixing WordPress
In reply to: e-commerce, plugins, pluginsHi
Try WooCommerce and a suitable theme. You may need to hire help for a few of your requirements that are not ‘out of the box’.
All the best!
Forum: Fixing WordPress
In reply to: can't edit text in pagesAre you using Visual Composer ?
Forum: Fixing WordPress
In reply to: box in middle of home pageHi
Get in touch with the theme’s support. Hopefully they will be able to provide detailed info / instructions for using that particular theme.
All the best!
Forum: Fixing WordPress
In reply to: How to make pictures on Posts show from home pageHi
You need to fix the image link.
Your homepage is trying to load images however the links are incorrect. This could be a problem in the theme itself.
Incorrect image link:
http://hendrixsalvage.com/wp-content/themes/ColdStone/timthumb.php?src=http://hendrixsalvage.com/gallery/rt-logo.png&h=62&w=62&zc=1&q=100"Contact the theme’s author to request support if you cannot fix this.
All the best!
Forum: Fixing WordPress
In reply to: Cannot create a new menuHi
Increase your max_input_vars in your php.ini (or ask your host to help increase the PHP request and post limits)
Let me know if that works for you.
All the best!
Forum: Hacks
In reply to: Can I execute a function to save a text file on save/update of a wordpress menuHi Paul
You can use the wp_update_nav_menu hook to accomplish this
Example:
add_action('wp_update_nav_menu', 'my_magento_items'); function my_magento_items($nav_menu_selected_id) { //get menu items array $items = wp_get_nav_menu_items($nav_menu_selected_id); //write to text file }All the best!
Forum: Fixing WordPress
In reply to: html "include"Hi
try
<?php include(get_stylesheet_directory().'/inc/calculator.html');?>All the best!
Forum: Fixing WordPress
In reply to: Changing transition properties of HTML5 search formHi
What theme are you using?
Hi
I don’t think there’s a limit.
It is better practice to use different user accounts so you can track who edits what / restrict access when it’s necessary etc.
All the best!
Forum: Networking WordPress
In reply to: Limiting WooCommerce login access in WPMUHi
You will need to have a membership plugin installed.
The plugin from WPMU Dev is perfect and S2Membership might also be suitable.
All the best!