kaoringo
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Zakra] Showing on Cellphone hide some part of websiteI don’t know why… but it is fixed.
Now I can see the whole list.Forum: Themes and Templates
In reply to: [Zakra] Front page picture is acting funnyI figured it is the default…
I’m using this demo theme below
https://zakrademos.com/one-page/
but the demo site’s main picture also gets blurry when I open the demo site on my iPad.Is anyone has figured how to solve this issue??
- This reply was modified 3 years, 11 months ago by kaoringo.
Forum: Themes and Templates
In reply to: [Zakra] Front page picture is acting funnyIt doesn’t work…
Forum: Themes and Templates
In reply to: [Zakra] Front page picture is acting funnyI found when I set my responsive mode to tablet,
I can add other images from desktop mode.
So I will make a smaller image and added it there to see
anything happen. Hopefully, it works well.Forum: Themes and Templates
In reply to: [Zakra] Front page picture is acting funnyI don’t know what I did…. but I was changing the setting and now, it is working better! I fixed the cellphone view… even though I don’t know what made it happen…
but I still have trouble with tablets… Is there any way we can adjust the picture size automatically and not a blurry zoomed picture on the front page?
Forum: Themes and Templates
In reply to: [Zakra] Scroll AnimationI just realize that this theme has motion effects setting in the advance tab.
I believe this will do what I wanted to do.
So please never mind.Again, thank you so much for your wonderful work:)
- This reply was modified 3 years, 11 months ago by kaoringo.
Forum: Plugins
In reply to: [Zigaform - Form Builder Lite] Error occure when update pageI couldn’t figure out why the error occurred still.
So I made page without elementor editor.
I use custom html in the page like
_____________________________________________________
<section>
<details>
<summary>Window Cleaning</summary>
<p>
[zigaform-estimator id=”1″]
</p>
</details>
<hr/>
<details>
<summary>House Cleaning</summary>
<p><div class=”house-cleaning”>
[zigaform-estimator id=”2″]
</div></p>
</details>
<hr/>
<details>
<summary>Retail Store Cleaning</summary>
<p>[zigaform-estimator id=”3″]</p>
</details>
<hr/>
<details>
<summary>Move In/Out Cleaning
</summary>
<p>[zigaform-estimator id=”4″] </p>
</details>
<hr/>
<details>
<summary>Sanitize/ Cleaning</summary>
<p>[zigaform-estimator id=”5″] </p>
</details>
</section>
______________________________________________________________
I also add the following custom CSS by plugin called Custom CSS + JS.
So the shortcodes in the html can do there jobs.______________________________________________________________
function wpf_dev_html_field_shortcodes( $field, $field_atts, $form_data ) {if ( ! empty( $field[‘code’] ) ) {
$field[‘code’] = do_shortcode( $field[‘code’] );
}
return $field;
}
add_filter( ‘wpforms_html_field_display’, ‘wpf_dev_html_field_shortcodes’, 10, 3 );___________________________________________________________
Now html code is working like a toggle…
I need to fix couple things still such as make the pointer work
when hover the pointer to the summary(toggle title) part
but in case there is someone who have same issue,
I just leave what I did for this case.