Arvin Guerra
Forum Replies Created
-
Hi, I seem to have fixed the issue. Updated WooCommerce and then deleted WooCommerce Afterpay Gateway 1.3.1. Downloaded latest version and didn’t install it via Dashboard, did manual install of the plugin.
What’s weird to me is if I install the the WooCommerce Afterpay Gateway 1.3.1 via the Dashboard it says the plugin is up-to-date but the latest version is Version 2.1.6.
Thanks. This one is solved.
Forum: Plugins
In reply to: [WooCommerce] AfterPay Integration issuesHi, I seem to have fixed the issue. Updated WooCommerce and then deleted WooCommerce Afterpay Gateway 1.3.1. Downloaded latest version and didn’t install it via Dashboard, did manual install of the plugin.
What’s weird to me is if I install the the WooCommerce Afterpay Gateway 1.3.1 via the Dashboard it says the plugin is up-to-date but the latest version is Version 2.1.6.
Thanks. This one is solved.
also searching for answers on this. Profile image works on upload but when saving it shows a blank image after.
Forum: Plugins
In reply to: [Breadcrumb NavXT] Fetch Template Directory on settings pageI have this on my home template settings field:
<a href="%link%"><img src="%home%images/icon_header.png" alt="HOME" /></a>
Is there a way that I can set the “%home%” to my current active theme directory? say for example “%template_directory%” same as calling
<?php bloginfo('template_directory'); ?>
Thanks
- This reply was modified 8 years, 2 months ago by Arvin Guerra. Reason: code edit
Forum: Plugins
In reply to: [Ceceppa Multilingua] Double language in URLMy bad, I feel so dumb for posting this one, I got it working by tweaking the permalink category. I’ll mark this one solved. Thanks, Great plugin btw.
Forum: Plugins
In reply to: [Ceceppa Multilingua] Ceceppa overrules WordPress Admin languageI also have the same problem. Any luck on this?
Forum: Hacks
In reply to: Highlight current year archive in single postNevermind, I got it working. If anyone here needs the same solution. Here it is.
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php $years = $wpdb->get_col(“SELECT DISTINCT YEAR(post_date) FROM $wpdb->posts ORDER BY post_date DESC”);
foreach($years as $year) : ?><li <?php if(get_the_date(‘Y’) == $year) echo(‘class=”current”‘);?>> “><?php echo $year; ?>
<?php endforeach; ?>
<?php endwhile;endif; ?>
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] 2 different Calendars on 1 WPI seem to have found a solution via AJAX, so that the user will still see the event as under Calendar A or B, since Page A and Page B has different layouts, It would seem fit for the UX to remain on the same page layout for the two layouts, as long as it works and fits the requirements. Thanks.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] 2 different Calendars on 1 WPYes, Got it working, however the event would still be under the same calendar, Like for example I have calendar A & B, The events under calendar A & B will have different events. But when I click an Event either under A or B, they would still be under 1 Calendar instead of their parent which is A or B. I don’t know if I make any sense. Sorry.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Title and date to URLNevermind, I got it all figured out. My bad. I just created a custom template for the My Calendar details page. Got It all working now. Thanks. Pretty useful with Contact Form 7 plugin.
Forum: Plugins
In reply to: [MW WP Form] Separate phone number fieldsYes, I figured. I just deactivated the generator and had the forms done manually without the generator. Thanks
Forum: Plugins
In reply to: [MW WP Form] Separate phone number fieldsNevermind, I got it all figured out. By just manually creating the layout and deactivating the MW WP generator.
Forum: Plugins
In reply to: [MW WP Form] Separate phone number fieldsone more question, How can I insert a simple text or html between the form and the submit button using the mw wp form generator? I can’t find any element from the generator to accomplish this. Or should I create the form manually?
Forum: Plugins
In reply to: [Easy Load More] Load custom number of postsI am also finding a way regarding this. I hope we get an answer.
Forum: Plugins
In reply to: [My Calendar - Accessible Event Manager] Not detecting CSSSorry, my bad. I got it working, I just checked the codes. from my current theme and
<?php wp_head(); ?> was missing from the header file. Thanks.