Jump to content

Search the Community

Showing results for tags 'rets pro version 4.1.0'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • General Topics
    • Announcements
    • Pre-Sales Questions
    • Server/Hosting Requirements
    • SEO
  • RETS PRO™ 4.x WordPress Real Estate Plugin
    • 4.x Bug Reports!
    • 4.x General Discussion.
    • 4.x Multi-RETS.
    • 4.x Features Request
  • RETS PRO™ 3.x WordPress Real Estate Plugin
    • WPR 3.x Bug Reports!
    • WPR 3.x General Discussion.
    • WPR 3.x RETS.
    • WPR 3.x Features Request
    • Maps Module General Discussions
    • Maps Module Bug Reports
    • Maps Module Features Request
  • RETS PRO™ - Feature Modules
  • RETS PRO™ WordPress Real Estate Themes
    • RETS PROâ„¢ Theme - Bug Reports!
    • RETS PROâ„¢ Theme - General Discussion.
    • RETS PROâ„¢ Theme - Skins.

Location


Interests


Biography


Location


Interests


Occupation

Found 2 results

  1. We have released the newest version 4.1.0 as of today. * Important notes below to make sure that you are keeping up with all of the latest changes. #1 - Template Changes. (With this release you will need to make sure to do the following template edits so that your templates are working correctly.) The following template changes are required now due to the fact that we have removed our global insert of these scripts and now only include them where the templates are actually calling for them - this will result in Better SEO Page Speeds and Scores! Add the following code to the top of the templates listed below - or copy and paste from our newest default templates. Note: -> replace the dynamic php path below if problem occurs with cache plugins. <?php // replace the dynamic php path below if problem occurs with cache plugins $conf = \RPx\System\GetModuleConfig('MapSearch'); echo "<script type='text/javascript' src='https://maps.googleapis.com/maps/api/js?libraries=drawing%2Cplaces&key=".$conf['gmap_key']."'></script>"; echo "<script type='text/javascript' src='".$config['wpradmin_baseurl'].'/rpx/Modules/MapSearch/scripts/markerclusterer.js'."'></script>"; echo "<script type='text/javascript' src='".$config['wpradmin_baseurl'].'/rpx/Modules/MapSearch/scripts/oms.js'."'></script>"; echo "<script type='text/javascript' src='".$config['wpradmin_baseurl'].'/rpx/Modules/MapSearch/scripts/remote-map.js'."'></script>"; ?> Template Files: listing_detail.php sc_templates/(all maps short code templates ) #2 - The following code needs to be added to your child themes function.php in order to get your listings indexed into google. // Disable REST API link tag remove_action('wp_head', 'rest_output_link_wp_head', 10); // Disable oEmbed Discovery Links remove_action('wp_head', 'wp_oembed_add_discovery_links', 10); // Disable REST API link in HTTP headers remove_action('template_redirect', 'rest_output_link_header', 11, 0); And if you use Yoast then add this and don't forget to watch our youtube video and match the listing details ID#. ( https://www.youtube.com/watch?v=6smPGL4QQrQ&t ) add_action('template_redirect','remove_wpseo'); function remove_wpseo(){ if (is_page(330)) { global $wpseo_front; if(defined($wpseo_front)){ remove_action('wp_head',array($wpseo_front,'head'),1); } else { $wp_thing = WPSEO_Frontend::get_instance(); remove_action('wp_head',array($wp_thing,'head'),1); } } } ======================================== Next version 4.1.1 coming very soon! ======================================== We are working on a couple of new sets of "default templates" that will be coming out in January. Here are a few other items that we are also currently working on: #1 php 7.3 compatibility testing. #2 php 7.4 compatibility testing. #3 More x2crm integration and crossover compatibility. You can expect to see more frequent updates as we're now doing multiple crossover compatibility testing and breaking out our modules into separate downloads again so that only the main core is all that will be updated via the plugin updater going forward in all future releases. Cheers! ..... and have a Happy New Year!
  2. We have released the newest version 4.1.0 as of today. * Important notes below to make sure that you are keeping up with all of the latest changes. Basic Change Log For 4.1.0 Added more time for license lookup to allow for developers to switch back and forth while using single site license key. Removed Global Maps Code shown below and moved to the tops of the map related templates. Moved some Admin Menu links around and renamed a few. Fixed installer.php file to correct field type causing error with some DIY hosting setups. Fixed a few minor admin area descriptions and css. #1 - Template Changes. (With this release you will need to make sure to do the following template edits so that your templates are working correctly.) The following template changes are required now due to the fact that we have removed our global insert of these scripts and now only include them where the templates are actually calling for them - this will result in Better SEO Page Speeds and Scores! Add the following code to the top of the templates listed below - or copy and paste from our newest default templates. Note: -> replace the dynamic php path below if problem occurs with cache plugins. <?php // replace the dynamic php path below if problem occurs with cache plugins $conf = \RPx\System\GetModuleConfig('MapSearch'); echo "<script type='text/javascript' src='https://maps.googleapis.com/maps/api/js?libraries=drawing%2Cplaces&key=".$conf['gmap_key']."'></script>"; echo "<script type='text/javascript' src='".$config['wpradmin_baseurl'].'/rpx/Modules/MapSearch/scripts/markerclusterer.js'."'></script>"; echo "<script type='text/javascript' src='".$config['wpradmin_baseurl'].'/rpx/Modules/MapSearch/scripts/oms.js'."'></script>"; echo "<script type='text/javascript' src='".$config['wpradmin_baseurl'].'/rpx/Modules/MapSearch/scripts/remote-map.js'."'></script>"; echo "<link rel='stylesheet' href='".site_url().'/wpradmin/'.$config['template_dir'].'/style.css'."' type='text/css' media='all'>"; echo "<link rel='stylesheet' href='".site_url().'/wpradmin/'.$config['template_dir'].'/css/fontawesome/css/font-awesome.min.css'."' type='text/css' media='all'>"; echo "<script src='".site_url().'/wpradmin/'.$config['template_dir'].'/js/control.js?ver=1.0'."' type='text/javascript'></script>"; ?> Templates That Require The Above Code Added: your-template-name/listing_detail.php your-template-name/sc_templates/(all maps shortcode templates) ============================================================ #2 - Important Note: Everyone Needs To Modify In Order To Get Listings Indexed Into Google etc: Adding the following code to your Wordpress Child-themes/functions.php File. Failing to do so will prevent your listings from being indexed or added to any sitemaps.xml files etc so it's pretty important step needed to solve that problem. (Due to wordpress now adding these globally & there are plugins to remove them as well but we like adding to the child theme.) // Disable REST API link tag remove_action('wp_head', 'rest_output_link_wp_head', 10); // Disable oEmbed Discovery Links remove_action('wp_head', 'wp_oembed_add_discovery_links', 10); // Disable REST API link in HTTP headers remove_action('template_redirect', 'rest_output_link_header', 11, 0); ================================ If You are also using Yoast SEO plugin - then follow these instructions shown in this video; ( https://www.youtube.com/watch?v=6smPGL4QQrQ&t ) And by adding the following code to your Wordpress Child-themes/functions.php File. add_action('template_redirect','remove_wpseo'); function remove_wpseo(){ if (is_page(330)) { global $wpseo_front; if(defined($wpseo_front)){ remove_action('wp_head',array($wpseo_front,'head'),1); } else { $wp_thing = WPSEO_Frontend::get_instance(); remove_action('wp_head',array($wp_thing,'head'),1); } } } ============================ Coming Soon in version 4.1.1 Adding in more x2crm changes. Testing for php 7.3 & 7.4 version issues. Creating a very basic bootstrap default template and a new default matched enfold template in order to solve all default customer/theme setups. Cheers and Happy New Year!
×