austintenantadvisors
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Property Listings] Commercial Real Estate Needsso drop this code into functions php? define(‘EPL_COMMERCIAL_SLUG’, ‘my-commercial-slug’);
my-commercial-slug…………….this is the part I change correct? So if I wanted to change it to ………..office-space-listings then do the following?
define(‘EPL_COMMERCIAL_SLUG’, ‘office-space-listings’);
Forum: Plugins
In reply to: [Easy Property Listings] Commercial Real Estate Needs@mervb1 does the commercial search add on help? Also I’m interested in the map feature.
Do you offer a service to help set up the plugin?
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Table on mobileRegarding…..For that, could you temporarily turn off the CSS minification/concatenation and caching plugin?
I’m not sure how to do that. Is this something my hosting company can do?
Forum: Plugins
In reply to: [Widget Logic] How do you exclude a page from showing a widget?So If I don’t want the widget to show up on the page… https://www.domain.com/blog………..or any of the blog posts…..e.g. https://www.domain.com/blog/bestbluewidget
what would the conditional tag look like?
is_page(‘https:…./blog/*’)
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Reduce Column widthWhere do you clear the cache of the tablepress plugin?
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Reduce Column widthRight now I have the following added to the plugin options area but the columns still look the same. I would like to reduce the padding (the white space between the text in a cell and the edges of a cell)
.tablepress-id-3 .column-2,
.tablepress-id-3 .column-3,
.tablepress-id-3 .column-4 {
padding: 4px;
}.tablepress-id-3 {
width: auto;
}- This reply was modified 5 years, 10 months ago by austintenantadvisors.
Forum: Fixing WordPress
In reply to: How to change fonts to httpsIt’s a genesis theme. I don’t see any plugin for fonts
Forum: Plugins
In reply to: [AgentPress Listings] How do you change the agentpress listing slug?HI Nick, Your responsiveness is awesome! I know you are busy…. If you are available I can pay you to help fix this. This listing plugin is driving me crazy ??
This is what I see now after installing the last round of code.
(/blog still appears)
https://ata.staging.wpengine.com/blog/listings/98-san-jacinto-blvd-7306-sf-office-sublease/I have 3 listing taxonomies (/blog has been removed)
https://ata.staging.wpengine.com/type/office-space-subleases/
https://ata.staging.wpengine.com/location/downtown/
https://ata.staging.wpengine.com/size/6000-7000-sf/Forum: Plugins
In reply to: [AgentPress Listings] How do you change the agentpress listing slug?Although /blog still appears on the property types that I created.
https://ata.staging.wpengine.com/blog/propertytype/office-space-subleases/How can I remove /blog from that?
Forum: Plugins
In reply to: [AgentPress Listings] How do you change the agentpress listing slug?I think that worked! Thank you Nick!
Forum: Plugins
In reply to: [AgentPress Listings] How do you change the agentpress listing slug?ok. Thank you!
Just to make sure I have this right…………. Just insert the code below and I should be able to change the slug from https://ata.staging.wpengine.com/blog/listings/………..to https://ata.staging.wpengine.com/commercial-listings/
add_filter( ‘agentpress_listings_post_type_args’, ‘sp_change_listings_slug’ );
function sp_change_listings_slug( $args ) {
$args[‘rewrite’] = array(
‘with_front’ => false,
‘slug’ => ‘commercial-listings’
);return $args;
}Forum: Plugins
In reply to: [AgentPress Listings] How do you change the agentpress listing slug?How do I get rid of the /blog?
The url is currently like this https://ata.staging.wpengine.com/blog/commercial-listings/
I want to remove /blog
https://ata.staging.wpengine.com/commercial-listings/Forum: Plugins
In reply to: [AgentPress Listings] Rename Additional FeaturesDid you find a solution to this?
Forum: Plugins
In reply to: [AgentPress Listings] How do you change the agentpress listing slug?How do I get rid of the /blog?
The url is currently like this https://ata.staging.wpengine.com/blog/commercial-listings/
I want to remove /blog
https://ata.staging.wpengine.com/commercial-listings/Forum: Plugins
In reply to: [AgentPress Listings] How do you change the agentpress listing slug?Thanks Nick
Does it matter where I drop the code in? Or do I insert At the very bottom after all other code?