🇮🇳India @kishan@lnwebworks

Account created on 8 August 2022, over 2 years ago
#

Recent comments

🇮🇳India kishan@lnwebworks

kishan@kk made their first commit to this issue’s fork.

🇮🇳India kishan@lnwebworks

I have pushed the changes. Please review it once.

🇮🇳India kishan@lnwebworks

Yes. I reviewed it. It's fixed in version 1.0.2.

🇮🇳India kishan@lnwebworks

Yes. I reviewed the module and found issues with the default item load on the path yoursite/billing-form; the total price is 0 for quantity.
So I added the fixes for this. Please review my fixes. I have added them in MR.

🇮🇳India kishan@lnwebworks

I have added the merge request in target branch but it gives errors. Please review MR and add the required changes.

🇮🇳India kishan@lnwebworks

Please remove your commented key from the WeatherForecastBlock.php file and
If your API key is empty and not configured, then a message will be shown.

if (empty($api_key)) {
      return [
        '#markup' => $this->t('Please configure the OpenWeatherMap API key.'),
      ];
    }
🇮🇳India kishan@lnwebworks

@chaitanyadessai Please Check Yesterday I tried to create MR request but changes are already pushed in branch.
Direct access for changes in branch is also not good from security reasons. Please make it correct.

🇮🇳India kishan@lnwebworks

1 . I Installed the module and enabled it.

2. Then Go to page content type and click add field.

3. I selected the reference type field and click add.

4. Select the block plugin field and add.

Please follow the steps above.
Because it's not missing for me when I follow the above steps.

🇮🇳India kishan@lnwebworks

As jQuery and once are part of Drupal core and do not need to be added as separate dependencies in the info.yml.

🇮🇳India kishan@lnwebworks

kishan@kk made their first commit to this issue’s fork.

🇮🇳India kishan@lnwebworks

Add a composer.json file with the following configurations:

{
"name": "drupal/academic_marksheet",
"description": "Module to manage student marks and generate results.",
"require": {
"tecnickcom/tcpdf": "^6.7"
}
}

for resolving library issue.

🇮🇳India kishan@lnwebworks

Please try to downgrade the module to version 8.x-1.9 then upgrade to version 3.0.0-alpha2. Then the issue will be fixed using the same approach on my site on live as well as locally and it will fix the problem.

🇮🇳India kishan@lnwebworks

Hello @ i have create mr please review @tobiasb@sanduhrs@hexabinaer

🇮🇳India kishan@lnwebworks

Hello @steveoriol you can add more avatars Gravatar generator by selecting its type.
I have attached screenshots that I think will be helpful for you but in my case adorable is not showing.

🇮🇳India kishan@lnwebworks

I created patch for the above issue.

🇮🇳India kishan@lnwebworks

hi @GyD,@Ruben Marques.
I have created MR for the above issue. Please review it once.
Thank you

🇮🇳India kishan@lnwebworks

You can add hook help in .module file with the help of below code

<?php

use Drupal\Core\Routing\RouteMatchInterface;

/**
* Implements hook_help().
*/
function YOUR_MODULE_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.YOUR_MODULE':
return '

' . t('This is a description of what your module does.') . '

';
}
}
🇮🇳India kishan@lnwebworks

Please try above patch for the issue.

After applying patch please make sure to flush caches.

Thank you.

🇮🇳India kishan@lnwebworks

Hello ,@chancenyasulu I checked all the versions of this module.
I am getting same coding standard issues returned.
Can you please check again.I have attached gif video also.

🇮🇳India kishan@lnwebworks

Add hook help by creating file with name sector_megamenu.module

 <?php

use Drupal\Core\Routing\RouteMatchInterface;

/**
 * Implements hook_help().
 */
function YOUR_MODULE_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.YOUR_MODULE':
      return '<p>' . t('This is a description of what your module does.') . '</p>';
  }
}
}
🇮🇳India kishan@lnwebworks

Add hook help by creating file with name commerce_tokens.module

<?php

use Drupal\Core\Routing\RouteMatchInterface;

/**
* Implements hook_help().
*/
function commerce_token_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the commerce_token module.
case 'help.page.commerce_token':
$output = '';
$output .= '

' . t('About') . '

';
$output .= '

' . t('This module provides new commerce tokens.') . '

';
return $output;

default:
}
}

🇮🇳India kishan@lnwebworks

I am providing patch for dependencies in Migrate Tools module.
When this module is installed then migrate plus module is also installed and there will be no errors.

🇮🇳India kishan@lnwebworks

If you install migrate plus module then this error will be gone so i am providing patch below for including migrate plus module also as a dependency in Path Redirect Import module.

🇮🇳India kishan@lnwebworks

Thank you for the feedback @ alvar0hurtad0

1.  /**
   * The current user.
   *
   * @var \Drupal\Core\Session\AccountProxy
   */
  protected $currentUser;

Updates this as @var \Drupal\Core\Session\AccountProxyInterface

🇮🇳India kishan@lnwebworks

Thank you for the feedback alvar0hurtad0
1.Updated

* @param Drupal\Core\Messenger\MessengerInterface $messenger
   *   The Messenger.
There's a missing \

2.Updated $field variable value

🇮🇳India kishan@lnwebworks

Thank you for the feedback @alvar0hurtad0

1.if ($has_field && !empty($has_field)) {
the $has_field && part is redundant as it's checked in the second condition.

Similar issue are fixed.
2.$order_item may be NULL if $cart->getItems()is null, so WSOD could happen.

Not empty if condition is added for the above.

3. $this->messenger->addError($this->t('You have already active subscriptions'));
The message should end with a .
. is added in the message.

Above issues are fixed .

🇮🇳India kishan@lnwebworks

Thank you for the feedback

dependencies:
- commerce:commerce
- commerce_recurring:commerce_recurring

Make the above changes in info.yml file

🇮🇳India kishan@lnwebworks

Thank you for the feedback.

1. Added short description for explanations.
2. Added class namespace in short description.
3.Removed the extraneous line
4.Removed the empty spaces.
5. described the method parameters in documentation
6.translatable strings added
7.Updated restricts users

Above changes are made in the default branch.

🇮🇳India kishan@lnwebworks

@jsacksick Yes this issue was in Drupal 10 only

Production build 0.71.5 2024