lord_dev
Forum Replies Created
-
Forum: Reviews
In reply to: [ACF Merge Group Tabs] Doesn't work with latest version of ACFUpdate: the latest update appears to have fixed this issue!
Forum: Reviews
In reply to: [ACF Merge Group Tabs] Doesn't work with latest version of ACFThis still does not work for me, even with the fix. I am using ACF Pro.
Any updates?
Thanks
You can only extract information that is displayed on the feed itself (not the webpage it is linked to).
In this case, you can only get:
- Title – Cultural Spheres 2015 International Exhibition
- Body – January 24-February 7; reception: Tuesday, February 3, 6-8 pm Gallery FIT, The Museum at FIT Panel discussion: Thursday, February 5, 12:20-2 pm Pomerantz Center, Room D522 The exhibition unites the
- Date – 13 January 2015 22:51
- Image – If there is an image
You might be able to get a couple of other things. But nothing from the actual page your feed is linking to e.g. http://news.fitnyc.edu/2015/01/13/cultural-spheres-2015-international-exhibition/
(as far as I know, anyway)
Can you please send me a link to your RSS feed? The body text needs to be in the actual RSS feed (not the website the feed is linking to).
I’m having the same problem too. Anyone have a solution?
EDIT: I’ve found a solution: Go to Autopost (left sidebar menu), find the heading Word Output Setting, and select ‘Give me Everything’ in the DDL
Forum: Plugins
In reply to: [Event Rocket] Latitude – Logitude+1 for the Zoom In…
It would be great if the “Google Maps default zoom level” within Event Settings can still be used for setting the Zoom level (when using lat/long)?
This appears to be working now after installing the latest updates. Not too sure if this was the exact problem, but atleast this is now working.
Thanks for your help and input.
Hi Barry,
I’ve just tested the following setup (variety of combinations):
Clean installation of WordPress with no plugins
WordPress 3.8.3 (downgraded)
Wordpress 3.9.1 (current)The Events Calendar 3.5.1
The Events Calendar 3.4Event Rocket 1.4.3
Event Rocket 1.4.0Different web browsers (chrome,firefox,safari).
Default themes (twenty twelve)
No active plugins (except TEC and ER)All setups failed to show any Event Rocket functionality. The problem I am receiving is not a Lat/Long or shortcode issue, but the plugin itself is just not working at all. Almost like its not even activated (but it is).
Really have no idea why this is not working 🙁
Thanks for getting back to me Barry.
Strange one, this still does not work for me. I have also tried installing on a clean install of WordPress (just the two plugins, and WP default theme). But no meta boxes are displayed?
Is anyone else experiencing this problem? I really need the latitude/longitude functionality.
Same versions still apply as above.
UPDATE: Infact, I don’t think plugin is working at all. I have tried inserting shortcodes e.g. [event_rocket_countdown id=”789″ show_seconds=”true”] and it just displays the text.Solution: Disable error reporting.
How?
Go to wp-config.php and add the following code on the last line:
error_reporting(0);In order for the line above to work, it most come after the call to wp-settings.php – for example:
/** Sets up WordPress vars and included files. */ require_once(ABSPATH . 'wp-settings.php'); error_reporting(0);Hi roblagatta
Thanks for your reply and the list of template overrides I can make.
I am currently using the ‘Phone’ field as an input for Longitude/Latitude co-ordinates for Google Maps and using these co-ordinates instead of the Full Address (I need accuracy!). However, every time an update is made it will delete my custom Google Maps co-ordinates and revert back to the Full Address.
As a future request, would it be possible to add a new Longitude/Latitude field in the admin area and a check box saying ‘Tick this box to use the longitude/latitude instead of the address’.
This will be a massive help for some of my websites, and I will gladly make an additional donation!
Thanks in advance
Forum: Plugins
In reply to: [Custom Post Type UI] All pages display index.php instead of page contentFixed the problem!
Quite simple really – 1 of my taxonomies was called ‘year’ which caused a bug in the system due to WordPress Posts reserving the ‘year’ taxonomy for their blogging system.
So just avoid any default taxonomies that WordPress may use, and you should avoid this problem.
Hope this helps someone
Forum: Plugins
In reply to: [Custom Post Type UI] All pages display index.php instead of page contentPS. I have also tried disabling all the plugins and just using the CPT UI and it still does not work.
I have also tried switching themes to a clean slate Twenty Ten but it still does not work.
This is a clean WordPress install with the latest version too.
I’m stumped.
Any ideas?
Forum: Plugins
In reply to: [Custom Post Type UI] Display 3 custom post on the homepageHey Red,
I use something similar to:
$args = array( 'post_type' => 'events', 'posts_per_page' => 4 ); $loop = new WP_Query( $args ); while ( $loop->have_posts() ) : $loop->the_post(); //please your display code here e.g. the_title(); endwhile;Hope this helps.
Forum: Fixing WordPress
In reply to: Custom post type uses index.php instead of archive-[name].phpThis problem seems to be happening but with Pages instead of a CPT.
I am using the Custom Post Type UI plugin. Has Archive is set to ‘True’ and I keep refreshing the permalinks. Instead of displaying the page, it displays index.php instead.
Any ideas?
Thanks