orangjul
Forum Replies Created
-
The menu I’m referring to is the little hamburger menu in the lower right corner (not the one with big icons near the top). Right now when you click on it, nothing happens. When I load the Google jquery file, the menu pops up. When I load the WP jquery file, nothing happens.
Right, I agree with that. But the menu depends on the Google jquery file, and I can’t figure what I can possibly add to make the menu work, without having 2 jquery files. Follow me?
Wow thanks for the fast response! I just swapped the files so now it’s loading the WP core file, not the Google one. The menu doesn’t work any more.
Forum: Plugins
In reply to: [WP Photo Album Plus] Add pin it button to photo of the day only?Thank you! I haven’t had a chance to try it out yet but will do so soon!
Forum: Plugins
In reply to: [WP Photo Album Plus] Add pin it button to photo of the day only?Is there a way to target the url of the photo of the day only? Whether you build a button using https://business.pinterest.com/widget-builder/#do_pin_it_button or us a plugin, if you want to predetermine an image to get pinned, you have to provide a url. I’ve tried adding both “#potd” and the whole “[wppa type=”photo” photo=”#potd” size=”600″ align=”center”][/wppa]” shortcode and neither work.
Forum: Plugins
In reply to: [Genesis Connect for WooCommerce] Layout messed up on /shop/So I went to the editing screen for the page layout and chose the sidebar-content layout, and it seemed to work. Is this the best way to accomplish this?
Forum: Plugins
In reply to: [WP Photo Album Plus] Album title not appearing on album pageAh yes, I missed II-A-4.1! Thanks!!
Forum: Plugins
In reply to: [WP Photo Album Plus] Album title not appearing on album pageThank you. I figured WPPA was a stone age version of WPPA+ plus. The examples I sent are two separate installs of WP so I have the new version on the site I need it to be on.
I was hoping to just display the title of the album, not the breadcrumbs, since I’ll have breadcrumbs on all pages from my theme. Is there a way to just have the album title?
Forum: Plugins
In reply to: [Promotion Slider] Images Appearing On Top of Each OtherChecking in on this…looks like plugin still hasn’t been updated since April!
eggproject, where did you put that code? Did you replace the code in advanced-custom-fields-nextgen-gallery-field-add-on/nggallery-field.php ?
Forum: Plugins
In reply to: [Promotion Slider] Images Appearing On Top of Each OtherAny help on this would be appreciated! I don’t like having old versions of plugins on my client sites!
Forum: Plugins
In reply to: [Promotion Slider] Images Appearing On Top of Each OtherI am having a similar issue. I am not using images in my promotions, but I am having a similar transition problem. I also started using this plugin several months ago, and when I upgraded the problem appeared. Basically I have a title and an excerpt, and when it switches from one slide to the next, the two texts overlap for 1-2 seconds and it looks like crap. I also had to revert back to version 3.3.1 for this to look ok.
FYI, I have tried disabling all other plugins to see if I had a conflict but that did not resolve the issue.
Micah, can you provide a fix please? I believe this is probably a bug, since I can’t seem to resolve this by changing any of the settings for the plugin.
Forum: Plugins
In reply to: [Custom Post Type UI] List of custom posts giving 404 errorI think I figured out what I needed to do (I got this from another post that was posted about a month ago):
1) Double-check that the custom post types in question have “has archive” set to true.
2) Go into Settings > Permalinks and hit “Save” at the bottom. This will flush and rewrite the permalink structure to make sure they’re directed to the right place.
Forum: Themes and Templates
In reply to: help writing a function or filter to shorten a long if statementWell I couldn’t figure it out myself, but I was able to convince one of my programmers to help me. Here’s the function…hope it’s useful to someone:
function isConciergePage() { global $post; $ancestors = get_post_ancestors($post); //print_r($ancestors); $result = false; if( (is_page(array('2641','2654','2656','2658','2660','2662','2664'))) || (in_array(2641,$ancestors)) || (in_array(2654,$ancestors)) || (in_array(2656,$ancestors)) || (in_array(2658,$ancestors)) || (in_array(2660,$ancestors)) || (in_array(2662,$ancestors)) || (in_array(2664,$ancestors)) ) { $result = true; } return $result; }
And then to call it from another file:
‘if(isConciergePage())
{
echo “<!– do something –>\n”;
}’Forum: Plugins
In reply to: [Yoast SEO] How do I avoid duplicating Site Title?I am also having this problem!