thinkeryllc
Forum Replies Created
-
Hi – I believe this is due to your template. It’s causing the tab links to scroll instead of open the tab. You can see the intended behavior of the tabs on our demo site here. You may want to check with the template developer for a fix. Thanks.
Hi – you can edit your iproperty_properties database table and change the ‘sqf_building’ field type to decimal(10,2).
Then, edit the ‘plugins/iproperty/classes/property.php’ file and remove ‘sqft_building’ from the $decimal_attributes array into the $float_attributes array:
$float_attributes = array( 'price', 'original_price', 'sqft_building', 'baths' );
Let us know questoins. Thanks.
well that code formatting got screwy.
Hopefully you see what I was getting at. You need to open and close comment blocks if you use the /* syntax
/* open and then close */
// single line comment
In PHP you use the /* to comment out blocks of text like this:
/* commenting this whole thing out
and this
and this
ending here */
You can also just use // to comment out single lines like this:
`// comment line
Forum: Plugins
In reply to: [IProperty Real Estate Agent] Fractional baths not agreeing to 'no' setting!You’re welcome! Please don’t forget rate the product when you are satisfied!
To remove the details tab, open the ‘iproperty/views/single_property.php’ and comment out:
$main_tabs['iproperty-info-details'] = array( 'label' => __( 'Details', 'iproperty' ), 'template_file' => iproperty_get_template_path( 'single_property/main_tabs/_details.php' ), 'variables' => array( 'property' => $property ) );
To remove the currency tab, open the ‘iproperty/iproperty.php’ file and comment out:
add_filter( 'iproperty_single_property_main_tabs', 'iproperty_add_currency_converstion_tab', 10, 2 );
Let us know questions. thanks.
Forum: Plugins
In reply to: [IProperty Real Estate Agent] Fractional baths not agreeing to 'no' setting!Ok, glad it worked. For the details view, open your ‘iproperty/views/single_property.php’ and ‘iproperty/views/single_property/main_tabs/_details.php’ files and find:
<?php echo ( $value ); ?>
change it to:
<?php echo ($name == 'baths' && !iproperty_option( 'fractional_baths' )) ? round($value) : ( $value ); ?>
Let us know questions. Thanks!
Forum: Plugins
In reply to: [IProperty Real Estate Agent] Free version vs. paid version questionsYes, many of the screenshots posted are from the free version. Please read through the quick start and users guides, which distinguish which views / features are in the paid vs free versions.
Docs are linked in the FAQ: https://www.ads-software.com/plugins/intellectual-property-basic/faq/
Thanks
Hi – you’re welcome to modify code as needed to change layouts, etc, but of course these types of modifications cannot be supported. The file to edit the home layout would be ‘wp-content/plugins/iproperty-basic/views/home.php’
Regarding setting the IP home view as your homepage – you can use a plugin like Simple 301 Redirects (https://www.ads-software.com/plugins/simple-301-redirects/) to redirect the root URL to the desired URL. Hope it helps.
Forum: Plugins
In reply to: [IProperty Real Estate Agent] Fractional baths not agreeing to 'no' setting!Hi – setting the fractional baths to ‘no’ will prevent the fractions from showing in the baths select drop down, but the value is still stored with a decimal point in the db.
To fix the front end display if you have fractional baths disabled, you can edit your ‘iproperty/views/_compact_property.php’ file and find:
<?php echo esc_html( $value ); ?>
and change it to:
<?php echo ($name == 'baths' && !iproperty_option( 'fractional_baths' )) ? round($value) : esc_html( $value ); ?>
Let us know any questions. Thanks.
Forum: Plugins
In reply to: [IProperty Real Estate Agent] Change iProperty MetaHi – did this help? Please let us know so we can mark as resolved. Thanks.
Forum: Plugins
In reply to: [IProperty Real Estate Agent] TranslationsHi – please see this support thread. IP comes with a sample language file that can be easily translated to different languages.
Unfortunately, since IP for WordPress is still fairly new, we don’t have any additional translations at this time. If you’d like to share translations, we appreciate it!
Hi – setting the ‘Days New’ option to ‘0’ in your IProperty general settings will remove the ‘new’ banner. Let us know questions. Thanks.
Forum: Plugins
In reply to: [IProperty Real Estate Agent] Where can I add the Agent(s) information?Glad you got it figured out! I’ll mark this as resolved.
Hi Stanleyyy– themes are very much a matter of personal taste, so we don’t really recommend one in particular. Normally with a real estate agency however you’ll want something fairly clean and professional looking, which there are many examples of.