Alexey Golubnichenko
Forum Replies Created
-
Forum: Plugins
In reply to: [AGP Font Awesome Collection] Load scripts in footer?That’s right. Unfortunately the plugin loads all scripts regardless of plugin settings. I will fix it in a future release.
Forum: Plugins
In reply to: [AGP Font Awesome Collection] Load scripts in footer?Not a problem.
I hope this helps you.Forum: Plugins
In reply to: [AGP Font Awesome Collection] Load scripts in footer?That is bit strange, because this function is provided by my plugin and can be undefined only, when the plugin is not activated or not installed at the moment
Forum: Plugins
In reply to: [AGP Font Awesome Collection] Load scripts in footer?Hi Michelle,
You can try to use following code in the funcions.php of your theme:
add_action( 'wp_enqueue_scripts', f039924_enqueueScripts, 100); function f039924_enqueueScripts () { wp_dequeue_script( 'fac-mobile' ); wp_dequeue_script( 'fac-slider' ); wp_dequeue_script( 'fac' ); wp_enqueue_script( 'fac-mobile', Fac()->getAssetUrl('libs/jquery.mobile.min.js'), array('jquery'), false, true ); wp_enqueue_script( 'fac-slider', Fac()->getAssetUrl('libs/responsiveslides.js'), array('jquery'), false, true ); wp_enqueue_script( 'fac', Fac()->getAssetUrl('js/main.js'), array('jquery', 'fac-mobile', 'fac-slider'), false, true ); }
This code allows you to replace javascripts of my plugin to the site footer, but without any garanty from my side that plugn will work properly.
Pls let me know if this will help you.
Regards,
Alexey.Forum: Plugins
In reply to: [AGP Font Awesome Collection] Can't See Menu Icons in Dropdown LstHi, rcastudios!
If the issue is resolved, can I resolve this topic?
Forum: Plugins
In reply to: [AGP Font Awesome Collection] Can't See Menu Icons in Dropdown LstHi, rcastudios!
I am sorry for so long delay.
Could you see these links, pls:
https://www.ads-software.com/support/topic/fa-calculator-missing?replies=13
https://www.ads-software.com/support/topic/missing-icons-7?replies=7Maybe you You find a solution to your problem in them.
Forum: Plugins
In reply to: [AGP Font Awesome Collection] Appears to Hang in a loopHi, nicheprof!
If the issue is resolved, can I resolve this topic?
Forum: Plugins
In reply to: [AGP Font Awesome Collection] Appears to Hang in a loopHi, nicheprof!
Unfortunately I can not help in this matter, because I can not simulate a similar situation. I can assume that the problem is not systematic.
As for lines in trace file such as:
15955 lstat64("/home/personal/public_html/wp-content/plugins/agp-font-awesome-collection/agp-core/classes/curl", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
In the plugin is implemented autoloader function, which searches the files in certain folders that contain used classes and then includes them. The process of scanning folders actually can reduce the performance of disk operations, but is not to be the cause of your problem.
Forum: Plugins
In reply to: [AGP Ajax Taxonomy Filter] Fatal errorHi, olesolo!
Pls, check Your PHP version. Minimum required PHP version is 5.3.0Forum: Plugins
In reply to: [AGP Font Awesome Collection] How do I change size?Currently, I marked this topic as resolved. If You still have this issue, please re-open this topic and send additional info.
Forum: Plugins
In reply to: [AGP Font Awesome Collection] How do I change size?Hi maximilious,
If the issue is resolved, can I resolve this topic?
Forum: Plugins
In reply to: [AGP Font Awesome Collection] How do I change size?Hi maximilious,
“Button” element has predefined set of parameters that includes font size for properly displaying of this element.
“Icon” element it is just simple icon. This element doesn’t support URL parameter.
If you need to have link with simple icon, you can use following:1)
<a href="your_url">[fac_icon icon="camera" font_size="20px" color="#ff0000"]</a>
2)
<a href="your_url"><i class="fa fa-camera-retro fa-3x"></i></a> and style it for your purposes.
Forum: Plugins
In reply to: [AGP Font Awesome Collection] fa-calculator missingHi Denis,
Currently, I marked this topic as resolved. If you still have this issue, please re-open this topic and send additional info.Forum: Plugins
In reply to: [AGP Font Awesome Collection] fa-calculator missingHi Denis,
If the issue is resolved, can I resolve this topic?
Forum: Plugins
In reply to: [AGP Font Awesome Collection] fa-calculator missingDenis
Now You can try update plugin to the latest version (v2.5.1)
The updates provides latest version of the Font Awesome and contains changes, that may be useful for you with Your issue.