bmohr
Forum Replies Created
-
Forum: Plugins
In reply to: [Wp-Pro-Quiz] Url of individual questionok. I would like to have individual urls for each question. Do you do this kind of work? How much would something like this cost?
Forum: Plugins
In reply to: How do I get a sticky navigation bar in WPTouch for mobile viewwere there any replies to this?
Forum: Plugins
In reply to: [Advanced Excerpt] Captions appearing in excerptsGreat plugin!
Under Settings and the “Remove all tags except the following”.
Can I add a tag to the list that I DO want stripped out?What I did:
1. I selected “caption” from the bottom dropdown and it was added to the tags to be NOT stripped out. So it then automatically adds the tag to the list with a checkmark. (Meaning it should be added as a tag that is NOT stripped out.)
2. Because I DO want the caption tag stripped out I unchecked the box.
3. Then I selected “Save Changes”
4. The tag then completely disappears.I would like the ability to add tags to the list that I DO want stripped out. Is this possible?
Ok. So not sure if anyone ever came to a solution for this but I got it work for me by doing the following:
1. Get rid of the this file in the plugin:
wp-featured-content-slider/scripts/jquery-1.2.6.min.js2. In this file: wp-featured-content-slider/featured-content-slider.php get rid of this line:
<script type=\"text/javascript\" src=\"".$slider_path."scripts/jquery-1.2.6.min.js\"></script>
3. In your themes header file include
<?php wp_enqueue_script("jquery"); ?>
before<?php wp_head(); ?>
AND this<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
after<?php wp_head(); ?>
so it should look like this:
<?php wp_enqueue_script("jquery"); ?> <?php wp_head(); ?> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
It’s a hack and I’m not an expert but it worked for me.
Cheers!Indeed it does. I just installed WPtouch Pro and through deactivating my installed plugins 1 by 1, I determined that this plugin was the culprit. The slider is great. It’s a shame. Any possibility this error will be tested/fixed any time soon?
Forum: Fixing WordPress
In reply to: Annoying RedirectsThanks for the heads up. Deleting the malicious script in the header.php file worked for me.
Forum: Fixing WordPress
In reply to: Dynamic sidebars and cssHere’s what I’m getting:
https://www.mohrdesigns.com/small-business-products/overviewIt’s still trying to show the other sidebar…below the new style??? Is this because I have this at the end of my sidebar page:
<?php } else { ?> <?php } if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar(sidebar-main) ) ?>
Any suggestions?
Forum: Fixing WordPress
In reply to: Dynamic sidebars and cssNo. There’s many more pages. The above code are samples of the 2 pages that I need to figure out how to change the css style for. See the 2 links below.
consumer products:
https://www.mohrdesigns.com/consumer-productssmall business products:
https://www.mohrdesigns.com/consumer-productsI need to figure out how to get the sidebar background color to change depending on if the user is on the consumer product pages or the small business products pages????
Thanks in advance for any help!
Forum: Plugins
In reply to: [Plugin: WP link directory] It’s not workingThe permalinks structure is not working.
So when a user, say clicks on the sub category called “Hosting Services” they get the following link:
https://www.computesocial.com/directory?cat=Hosting+ServicesAnd when they click on the “more info.” link for a site within the sub category they get the following link:
https://www.computesocial.com/directory?id=63When I use the default “links” on the admin page for the plugin and set my permalinks to ‘/%category%/%postname%’ the directory links do not work at all and I’m just taken to my homepage.
Has there been any resolution to this issue?
Thanks for any help!
Forum: Plugins
In reply to: [Plugin: WordPress Link Directory] Requesting Information on PermalinksHave you gotten any further with this issue?
Forum: Plugins
In reply to: MLS/IDX import, Real Estate Website QuestionsForum: Fixing WordPress
In reply to: relative URL converted to abs URL in Visual Editor 2.5I made these 2 changes to the array in the tiny_mce_config.php:
‘convert_urls’ => false
‘relative_urls’ => trueand then tested it by making a relative path to one of my images and it does not work. Any other suggestions?