agentevolution
Forum Replies Created
-
Forum: Plugins
In reply to: [IMPress Agents] Agents pageSure. You’ll need to edit the plugin’s template file.
Copy the archive-employee.php from the plugin’s /includes/views/ folder and copy to your theme folder. Then edit the line that reads:
$title = '<h1 class="archive-title">' . get_bloginfo('name') . ' Employees</h1>';to:
$title = '<h1 class="archive-title">' . get_bloginfo('name') . ' Agents</h1>';Forum: Plugins
In reply to: [IMPress Listings] Resize fontsYou’ll need to use CSS to increase the font size.
Find the class you need to target using your browser’s developer tools and add the CSS declaration:
font-size: 20px; /* use whatever size you choose */Forum: Plugins
In reply to: [IMPress Listings] Search page color changesThe classes may change depending on where it is displayed (search/archive pages vs single listings vs widgets) and also based on the property status, but here is the base CSS. Modify this to your needs:
.archive .listing-wrap span.listing-status, .wp-listings-shortcode .listing-wrap span.listing-status { color: #fff; background: #53c331; background: rgba(83, 195, 49, 0.80); font-weight: 700; text-align: center; text-transform: uppercase; box-shadow: 0px 4px 1px rgba(0, 0, 0, 0.2); }Forum: Plugins
In reply to: [IMPress Listings] Location map issueAre you seeing any errors in the console? Can you provide a link to your site?
Forum: Plugins
In reply to: [IMPress Listings] Footer widgets at bottom of listingMore often than not, your theme is adding these. The single-listing.php template file included in the plugin will call for get_sidebar() and get_footer(). If you prefer not to display these, you can remove those lines from the template.
*Note: if you want to modify the template, it’s advised to copy the file to your theme folder so it will not be overwritten in a plugin update.
Forum: Plugins
In reply to: [IMPress Listings] Removing Pagination in Search ResultIn the archive-listing.php file, you will see the pagination functions at the bottom of the archive_listing_loop() function. Just edit the file and remove those lines.
It looks like this (different functions are used depending on theme used):
if (function_exists('equity')) { equity_posts_nav(); } elseif (function_exists('genesis_init')) { genesis_posts_nav(); } else { wp_listings_paging_nav(); }*Note: if you want to modify the template, it’s advised to copy the file to your theme folder so it will not be overwritten in a plugin update.
Forum: Plugins
In reply to: [IMPress Listings] Remove footer widgetsMore often than not, your theme is adding these. The single-listing.php template file included in the plugin will call for get_sidebar() and get_footer(). If you prefer not to display these, you can remove those lines from the template.
*Note: if you want to modify the template, it’s advised to copy the file to your theme folder so it will not be overwritten in a plugin update.
Forum: Plugins
In reply to: [IMPress Listings] Custom template for search result and single listingYes, you can add custom templates to your theme.
Copy the single-listing.php (for single listings) or archive-listing.php (for taxonomies or search results) from the plugin’s
/includes/views/folder to your child theme and they will be used.Forum: Plugins
In reply to: [IMPress Listings] Separate Listings into categories for specific menu pagesYes, very easy. Each category has it’s own archive page. To add them to your menus, visit Appearance > Menus. On the left side, you have all the listing taxonomies available to add (i.e. Property Types).
Forum: Plugins
In reply to: [IMPress Listings] Tab not responsive with embed codeIf your embed code is not responsive, there is nothing the plugin can do to fix that. You’ll need to contact the provider of the embed code to see if they have an alternative.
Forum: Plugins
In reply to: [IMPress Listings] Parse Error when activation?What version of PHP is on your server? You likely need to have your hosting provider update the version of PHP to a minimum of 5.4.
Forum: Plugins
In reply to: [IMPress Listings] Remove Built-In Contact FormYou can enter any text there, such as “Call for more details”, or a blank space may even work.
Or you can copy the single-listing.php template to your theme folder and remove the entire contact form section.
Forum: Plugins
In reply to: [IMPress Listings] Dynamic Ads for FacebookNot at this time as it requires a unique, custom formatted XML feed be created.
Forum: Plugins
In reply to: [IMPress Listings] Map coordinates are not being importedThat’s great and thanks for upgrading. However, nothing in the previous reply stated that you will get map coordinates if you upgrade to a Platinum account – they simply are not available via the API for featured properties.
Forum: Plugins
In reply to: [IMPress Listings] Use template for listing pages onlyTechnically, yes. But they are not available for single purchase. They are only available with the purchase of an Equity child theme or a TurnKey website.